System.Xml
[00 00 00 00 00 00 00 00 04 00 00 00 00 00 00 00]
1.0.5000.0
2.0.0.0
4.0.0.0
To be added
System.Xml.XmlLinkedNode
This class is a Microsoft extension to the Document Object Model (DOM).
Represents the XML declaration node <?xml version='1.0'...?>.
Constructor
1.0.5000.0
2.0.0.0
4.0.0.0
Do not instantiate an directly; instead, use methods such as .
Initializes a new instance of the class.
The XML version; see the property.
The encoding scheme; see the property.
Indicates whether the XML document depends on an external DTD; see the property.
The parent XML document.
Method
1.0.5000.0
2.0.0.0
4.0.0.0
System.Xml.XmlNode
CloneNode serves as a copy constructor for nodes. To see how this method behaves with other node types, see .
The cloned node has no parent ( returns null).
Creates a duplicate of this node.
The cloned node.
true to recursively clone the subtree under the specified node; false to clone only the node itself. Because XmlDeclaration nodes do not have children, the cloned node always includes the data value, regardless of the parameter setting.
Property
1.0.5000.0
2.0.0.0
4.0.0.0
System.String
To be added: an object of type 'string'
Unlike most XML attributes, encoding attribute values are not case-sensitive. This is because encoding character names follow ISO and Internet Assigned Numbers Authority (IANA) standards.
Gets or sets the encoding level of the XML document.
Property
1.0.5000.0
2.0.0.0
4.0.0.0
System.String
To be added.
To be added.
Gets or sets the concatenated values of the XmlDeclaration.
Property
1.0.5000.0
2.0.0.0
4.0.0.0
System.String
To be added.
To be added.
Gets the local name of the node.
Property
1.0.5000.0
2.0.0.0
4.0.0.0
System.String
To be added.
To be added.
Gets the qualified name of the node.
Property
1.0.5000.0
2.0.0.0
4.0.0.0
System.Xml.XmlNodeType
To be added.
To be added.
Gets the type of the current node.
Property
1.0.5000.0
2.0.0.0
4.0.0.0
System.String
To be added: an object of type 'string'
To be added
Gets or sets the value of the standalone attribute.
Property
1.0.5000.0
2.0.0.0
4.0.0.0
System.String
To be added.
To be added.
Gets or sets the value of the XmlDeclaration.
Property
1.0.5000.0
2.0.0.0
4.0.0.0
System.String
To be added: an object of type 'string'
To be added
Gets the XML version of the document.
Method
1.0.5000.0
2.0.0.0
4.0.0.0
System.Void
To be added.
Saves the children of the node to the specified . Because XmlDeclaration nodes do not have children, this method has no effect.
The XmlWriter to which you want to save.
Method
1.0.5000.0
2.0.0.0
4.0.0.0
System.Void
The value of the encoding and standalone attributes are determined by the and properties. If either of the properties is not set, the corresponding attribute is not written. The version attribute is always written out with a value of 1.0.
Saves the node to the specified .
The XmlWriter to which you want to save.