XmlSchemaInclude.cs 561 B

123456789101112131415161718192021222324
  1. // Author: Dwivedi, Ajay kumar
  2. // [email protected]
  3. using System;
  4. using System.Xml.Serialization;
  5. namespace System.Xml.Schema
  6. {
  7. /// <summary>
  8. /// Summary description for XmlSchemaInclude.
  9. /// </summary>
  10. public class XmlSchemaInclude : XmlSchemaExternal
  11. {
  12. private XmlSchemaAnnotation annotation;
  13. public XmlSchemaInclude()
  14. {
  15. }
  16. [XmlElement("annotation",Namespace="http://www.w3.org/2001/XMLSchema")]
  17. public XmlSchemaAnnotation Annotation
  18. {
  19. get{ return annotation; }
  20. set{ annotation = value; }
  21. }
  22. }
  23. }