| 123456789101112131415161718192021222324252627 |
- // Author: Dwivedi, Ajay kumar
- // [email protected]
- using System;
- using System.Xml.Serialization;
- using System.ComponentModel;
- namespace System.Xml.Schema
- {
- /// <summary>
- /// Summary description for XmlSchemaXPath.
- /// </summary>
- public class XmlSchemaXPath : XmlSchemaAnnotated
- {
- private string xpath;
- public XmlSchemaXPath()
- {
- }
- [DefaultValue(null)]
- [System.Xml.Serialization.XmlAttribute("xpath")]
- public string XPath
- {
- get{ return xpath; }
- set{ xpath = value; }
- }
- }
- }
|