| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556 |
- // Author: Dwivedi, Ajay kumar
- // [email protected]
- using System;
- using System.Xml.Serialization;
- using System.Xml;
- namespace System.Xml.Schema
- {
- /// <summary>
- /// Summary description for XmlSchemaGroup.
- /// </summary>
- public class XmlSchemaGroup : XmlSchemaAnnotated
- {
- private string name;
- private XmlSchemaGroupBase particle;
- private XmlQualifiedName qualifiedName;
- 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; }
- }
- [XmlIgnore]
- internal XmlQualifiedName QualifiedName
- {
- get{ return qualifiedName;}
- }
- [MonoTODO]
- internal bool Compile(ValidationEventHandler h, XmlSchemaInfo info)
- {
- return false;
- }
-
- [MonoTODO]
- internal bool Validate(ValidationEventHandler h)
- {
- return false;
- }
- }
- }
|