| 1234567891011121314151617181920212223242526 |
- // 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()
- {}
-
- [System.Xml.Serialization.XmlAttribute("ref")]
- public XmlQualifiedName RefName
- {
- get{ return refName; }
- set{ refName = value; }
- }
- }
- }
|