XmlSchemaAttributeGroupRef.cs 550 B

1234567891011121314151617181920212223242526272829
  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. [XmlAttribute]
  17. public XmlQualifiedName RefName
  18. {
  19. get{ return refName;}
  20. set
  21. {
  22. refName = value;
  23. }
  24. }
  25. }
  26. }