| 123456789101112131415161718192021222324 |
- // Author: Dwivedi, Ajay kumar
- // [email protected]
- using System;
- using System.Xml.Serialization;
- namespace System.Xml.Schema
- {
- /// <summary>
- /// Summary description for XmlSchemaInclude.
- /// </summary>
- public class XmlSchemaInclude : XmlSchemaExternal
- {
- private XmlSchemaAnnotation annotation;
- public XmlSchemaInclude()
- {
- }
- [XmlElement("annotation",Namespace="http://www.w3.org/2001/XMLSchema")]
- public XmlSchemaAnnotation Annotation
- {
- get{ return annotation; }
- set{ annotation = value; }
- }
- }
- }
|