Updates referencesource to .NET 4.7
[mono.git] / mcs / class / referencesource / System.Xml / System / Xml / Schema / XmlSchemaAttributeGroupref.cs
1 //------------------------------------------------------------------------------
2 // <copyright file="XmlSchemaAttributeGroupRef.cs" company="Microsoft">
3 //     Copyright (c) Microsoft Corporation.  All rights reserved.
4 // </copyright> 
5 // <owner current="true" primary="true">Microsoft</owner>                                                               
6 //------------------------------------------------------------------------------
7
8 namespace System.Xml.Schema {
9
10     using System.Collections;
11     using System.Xml.Serialization;
12
13     /// <include file='doc\XmlSchemaAttributeGroupRef.uex' path='docs/doc[@for="XmlSchemaAttributeGroupRef"]/*' />
14     /// <devdoc>
15     ///    <para>[To be supplied.]</para>
16     /// </devdoc>
17     public class XmlSchemaAttributeGroupRef : XmlSchemaAnnotated {
18         XmlQualifiedName refName = XmlQualifiedName.Empty; 
19
20         /// <include file='doc\XmlSchemaAttributeGroupRef.uex' path='docs/doc[@for="XmlSchemaAttributeGroupRef.RefName"]/*' />
21         /// <devdoc>
22         ///    <para>[To be supplied.]</para>
23         /// </devdoc>
24         [XmlAttribute("ref")]
25         public XmlQualifiedName RefName { 
26             get { return refName; }
27             set { refName = (value == null ? XmlQualifiedName.Empty : value); }
28         }
29     }
30
31 }