XmlSchemaGroupRef.cs 672 B

12345678910111213141516171819202122232425262728293031
  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 XmlSchemaGroupRef.
  10. /// </summary>
  11. public class XmlSchemaGroupRef : XmlSchemaParticle
  12. {
  13. private XmlSchemaGroupBase particle;
  14. private XmlQualifiedName refName;
  15. public XmlSchemaGroupRef()
  16. {
  17. }
  18. [XmlIgnore]
  19. public XmlSchemaGroupBase Particle
  20. {
  21. get{ return particle; }
  22. }
  23. [System.Xml.Serialization.XmlAttribute("ref")]
  24. public XmlQualifiedName RefName
  25. {
  26. get{ return refName; }
  27. set{ refName = value; }
  28. }
  29. }
  30. }