// Author: Dwivedi, Ajay kumar // Adwiv@Yahoo.com using System; using System.Xml.Serialization; namespace System.Xml.Schema { /// /// Summary description for XmlSchemaAll. /// public class XmlSchemaAll : XmlSchemaGroupBase { private XmlSchemaObjectCollection items; public XmlSchemaAll() { items = new XmlSchemaObjectCollection(); } [XmlElement("element",typeof(XmlSchemaElement),Namespace="http://www.w3.org/2001/XMLSchema")] public override XmlSchemaObjectCollection Items { get{ return items; } } } }