mscorlib(4.0.0.0) API with additions
XmlSchemaAppInfo.cs
2 
3 namespace System.Xml.Schema
4 {
7  {
8  private string source;
9 
10  private XmlNode[] markup;
11 
14  [XmlAttribute("source", DataType = "anyURI")]
15  public string Source
16  {
17  get
18  {
19  return source;
20  }
21  set
22  {
23  source = value;
24  }
25  }
26 
29  [XmlText]
30  [XmlAnyElement]
31  public XmlNode[] Markup
32  {
33  get
34  {
35  return markup;
36  }
37  set
38  {
39  markup = value;
40  }
41  }
42  }
43 }
Represents the World Wide Web Consortium (W3C) appinfo element.
XmlNode [] Markup
Gets or sets an array of T:System.Xml.XmlNode objects that represents the appinfo child nodes.
Definition: __Canon.cs:3
Represents the root class for the Xml schema object model hierarchy and serves as a base class for cl...
Represents an attribute. Valid and default values for the attribute are defined in a document type de...
Definition: XmlAttribute.cs:7
string Source
Gets or sets the source of the application information.
Represents the text content of an element or attribute.
Definition: XmlText.cs:6
Represents a single node in the XML document.
Definition: XmlNode.cs:13