| 12345678910111213141516171819202122232425262728293031 |
- // Author: Dwivedi, Ajay kumar
- // [email protected]
- using System;
- using System.Xml;
- using System.Xml.Serialization;
- namespace System.Xml.Schema
- {
- /// <summary>
- /// Summary description for XmlSchemaGroupRef.
- /// </summary>
- public class XmlSchemaGroupRef : XmlSchemaParticle
- {
- private XmlSchemaGroupBase particle;
- private XmlQualifiedName refName;
- public XmlSchemaGroupRef()
- {
- }
- [XmlIgnore]
- public XmlSchemaGroupBase Particle
- {
- get{ return particle; }
- }
- [System.Xml.Serialization.XmlAttribute("ref")]
- public XmlQualifiedName RefName
- {
- get{ return refName; }
- set{ refName = value; }
- }
- }
- }
|