| 123456789101112131415161718192021222324252627282930313233343536373839 |
- // Author: Dwivedi, Ajay kumar
- // [email protected]
- using System;
- using System.Xml;
- using System.Xml.Serialization;
- namespace System.Xml.Schema
- {
- /// <summary>
- /// Summary description for XmlSchemaAnnotation.
- /// </summary>
- public class XmlSchemaAnnotation : XmlSchemaObject
- {
- private string id;
- private XmlSchemaObjectCollection items;
- private XmlAttribute[] unhandledAttributes;
- public XmlSchemaAnnotation()
- {
- }
- [XmlAttribute]
- public string Id
- {
- get{ return id; }
- set{ id = value; }
- }
- [XmlElement]
- public XmlSchemaObjectCollection Items
- {
- get{ return items; }
- }
- [XmlAnyAttribute]
- public XmlAttribute[] UnhandledAttributes
- {
- get{ return unhandledAttributes; }
- set{ unhandledAttributes = value; }
- }
- }
- }
|