XmlSchemaChoice.cs 515 B

123456789101112131415161718192021222324
  1. // Author: Dwivedi, Ajay kumar
  2. // [email protected]
  3. using System;
  4. using System.Xml.Serialization;
  5. namespace System.Xml.Schema
  6. {
  7. /// <summary>
  8. /// Summary description for XmlSchemaAll.
  9. /// </summary>
  10. public class XmlSchemaChoice : XmlSchemaGroupBase
  11. {
  12. private XmlSchemaObjectCollection items;
  13. public XmlSchemaChoice()
  14. {
  15. items = new XmlSchemaObjectCollection();
  16. }
  17. [XmlElement]
  18. public override XmlSchemaObjectCollection Items
  19. {
  20. get{ return items; }
  21. }
  22. }
  23. }