| 123456789101112131415161718192021222324252627282930313233343536 |
- // Author: Dwivedi, Ajay kumar
- // [email protected]
- using System;
- using System.Xml.Serialization;
- namespace System.Xml.Schema
- {
- /// <summary>
- /// Summary description for XmlSchemaGroup.
- /// </summary>
- public class XmlSchemaGroup : XmlSchemaAnnotated
- {
- private string name;
- private XmlSchemaGroupBase particle;
- public XmlSchemaGroup()
- {
- }
- [System.Xml.Serialization.XmlAttribute("name")]
- public string Name
- {
- get{ return name; }
- set{ name = value; }
- }
- [XmlElement("all",typeof(XmlSchemaAll),Namespace="http://www.w3.org/2001/XMLSchema")]
- [XmlElement("choice",typeof(XmlSchemaChoice),Namespace="http://www.w3.org/2001/XMLSchema")]
- [XmlElement("sequence",typeof(XmlSchemaSequence),Namespace="http://www.w3.org/2001/XMLSchema")]
- public XmlSchemaGroupBase Particle
- {
- get{ return particle; }
- set{ particle = value; }
- }
- }
- }
|