mscorlib(4.0.0.0) API with additions
XmlSchemaAppInfo.cs
1
using
System
.
Xml
.
Serialization
;
2
3
namespace
System.Xml.Schema
4
{
6
public
class
XmlSchemaAppInfo
:
XmlSchemaObject
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
}
System.Xml.Schema.XmlSchemaAppInfo
Represents the World Wide Web Consortium (W3C) appinfo element.
Definition:
XmlSchemaAppInfo.cs:6
System.Xml.Schema.XmlSchemaAppInfo.Markup
XmlNode [] Markup
Gets or sets an array of T:System.Xml.XmlNode objects that represents the appinfo child nodes.
Definition:
XmlSchemaAppInfo.cs:32
System.Xml.Serialization
Definition:
Accessor.cs:3
System
Definition:
__Canon.cs:3
System.Xml.Schema.XmlSchemaObject
Represents the root class for the Xml schema object model hierarchy and serves as a base class for cl...
Definition:
XmlSchemaObject.cs:8
System.Xml.XmlAttribute
Represents an attribute. Valid and default values for the attribute are defined in a document type de...
Definition:
XmlAttribute.cs:7
System.Xml.Schema.XmlSchemaAppInfo.Source
string Source
Gets or sets the source of the application information.
Definition:
XmlSchemaAppInfo.cs:16
System.Xml.XmlText
Represents the text content of an element or attribute.
Definition:
XmlText.cs:6
System.Xml
Definition:
AsyncHelper.cs:3
System.Xml.XmlNode
Represents a single node in the XML document.
Definition:
XmlNode.cs:13
System.Xml.Schema
Definition:
ActiveAxis.cs:3
All cs
System.Xml.Schema
XmlSchemaAppInfo.cs
Generated by
1.8.15