XmlSchemaAttributeGroupRef.cs 569 B

1234567891011121314151617181920212223242526
  1. // Author: Dwivedi, Ajay kumar
  2. // [email protected]
  3. using System;
  4. using System.Xml;
  5. using System.Xml.Serialization;
  6. namespace System.Xml.Schema
  7. {
  8. /// <summary>
  9. /// Summary description for XmlSchemaAttributeGroupRef.
  10. /// </summary>
  11. public class XmlSchemaAttributeGroupRef : XmlSchemaAnnotated
  12. {
  13. private XmlQualifiedName refName;
  14. public XmlSchemaAttributeGroupRef()
  15. {}
  16. [System.Xml.Serialization.XmlAttribute("ref")]
  17. public XmlQualifiedName RefName
  18. {
  19. get{ return refName; }
  20. set{ refName = value; }
  21. }
  22. }
  23. }