XmlSchemaXPath.cs 541 B

123456789101112131415161718192021222324252627
  1. // Author: Dwivedi, Ajay kumar
  2. // [email protected]
  3. using System;
  4. using System.Xml.Serialization;
  5. using System.ComponentModel;
  6. namespace System.Xml.Schema
  7. {
  8. /// <summary>
  9. /// Summary description for XmlSchemaXPath.
  10. /// </summary>
  11. public class XmlSchemaXPath : XmlSchemaAnnotated
  12. {
  13. private string xpath;
  14. public XmlSchemaXPath()
  15. {
  16. }
  17. [DefaultValue(null)]
  18. [System.Xml.Serialization.XmlAttribute("xpath")]
  19. public string XPath
  20. {
  21. get{ return xpath; }
  22. set{ xpath = value; }
  23. }
  24. }
  25. }