mscorlib(4.0.0.0) API with additions
XmlSchemaXPath.cs
3 
4 namespace System.Xml.Schema
5 {
8  {
9  private string xpath;
10 
13  [XmlAttribute("xpath")]
14  [DefaultValue("")]
15  public string XPath
16  {
17  get
18  {
19  return xpath;
20  }
21  set
22  {
23  xpath = value;
24  }
25  }
26  }
27 }
Definition: __Canon.cs:3
Represents an attribute. Valid and default values for the attribute are defined in a document type de...
Definition: XmlAttribute.cs:7
The base class for any element that can contain annotation elements.
Represents the World Wide Web Consortium (W3C) selector element.
string XPath
Gets or sets the attribute for the XPath expression.