XmlSchemaAll.cs 590 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 XmlSchemaAll : XmlSchemaGroupBase
  11. {
  12. private XmlSchemaObjectCollection items;
  13. public XmlSchemaAll()
  14. {
  15. items = new XmlSchemaObjectCollection();
  16. }
  17. [XmlElement("element",typeof(XmlSchemaElement),Namespace="http://www.w3.org/2001/XMLSchema")]
  18. public override XmlSchemaObjectCollection Items
  19. {
  20. get{ return items; }
  21. }
  22. }
  23. }