| 1234567891011121314151617181920212223242526272829 |
- // Author: Dwivedi, Ajay kumar
- // [email protected]
- using System;
- using System.Xml;
- using System.Xml.Serialization;
- namespace System.Xml.Schema
- {
- /// <summary>
- /// Summary description for XmlSchemaAttributeGroupRef.
- /// </summary>
- public class XmlSchemaAttributeGroupRef : XmlSchemaAnnotated
- {
- private XmlQualifiedName refName;
- public XmlSchemaAttributeGroupRef()
- {}
-
- [XmlAttribute]
- public XmlQualifiedName RefName
- {
- get{ return refName;}
- set
- {
- refName = value;
- }
- }
- }
- }
|