| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849 |
- // Author: Dwivedi, Ajay kumar
- // [email protected]
- using System;
- using System.Xml;
- using System.Xml.Serialization;
- namespace System.Xml.Schema
- {
- /// <summary>
- /// Summary description for XmlSchemaComplexContentRestriction.
- /// </summary>
- public class XmlSchemaComplexContentRestriction
- {
- private XmlSchemaAnyAttribute any;
- private XmlSchemaObjectCollection attributes;
- private XmlQualifiedName baseTypeName;
- private XmlSchemaParticle particle;
- public XmlSchemaComplexContentRestriction()
- {
- baseTypeName = XmlQualifiedName.Empty;
- attributes = new XmlSchemaObjectCollection();
- }
- [XmlElement]
- public XmlSchemaAnyAttribute AnyAttribute
- {
- get{ return any; }
- set{ any = value; }
- }
- [XmlElement]
- public XmlSchemaObjectCollection Attributes
- {
- get{ return attributes; }
- }
- [XmlAttribute]
- public XmlQualifiedName BaseTypeName
- {
- get{ return baseTypeName; }
- set{ baseTypeName = value; }
- }
- [XmlElement]
- public XmlSchemaParticle Particle
- {
- get{ return particle; }
- set{ particle = value; }
- }
- }
- }
|