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.XmlReader
Mono.Xml.IHasXmlParserContext
System.Xml.IXmlNamespaceResolver
In the dnprdnext, the recommended practice is to create instances using the class and the method. This allows you to take full advantage of all the new features introduced in the dnprdnshort. For more information, see Creating XML Readers.
The XmlNodeReader has the ability to read an XML DOM subtree. This class does not support document type definition (DTD) or schema validation. To perform data validation, use a validating object.
For further discussion on the XmlReader classes, see Read XML with the XmlReader.
Represents a reader that provides fast, non-cached forward only access to XML data in an .
Constructor
1.0.5000.0
2.0.0.0
4.0.0.0
In the dnprdnext, the recommended practice is to create instances using the class and the method. This allows you to take full advantage of all the new features introduced in the dnprdnshort. For more information, see Creating XML Readers.
For more information and examples of the code used to create an XmlNodeReader, see and overloads of the method.
Creates an instance of the XmlNodeReader class using the specified .
The XmlNode you want to read.
Property
1.0.5000.0
2.0.0.0
4.0.0.0
System.Int32
To be added.
In the dnprdnext, the recommended practice is to create instances using the class and the method. This allows you to take full advantage of all the new features introduced in the dnprdnshort. For more information, see Creating XML Readers.
This property is relevant to Element, DocumentType and XmlDeclaration nodes only. (Other node types do not have attributes.)
Gets the number of attributes on the current node.
Property
1.0.5000.0
2.0.0.0
4.0.0.0
System.String
To be added.
In the dnprdnext, the recommended practice is to create instances using the class and the method. This allows you to take full advantage of all the new features introduced in the dnprdnshort. For more information, see Creating XML Readers.
A networked XML document is comprised of chunks of data aggregated using various W3C standard inclusion mechanisms and therefore contains nodes that come from different places. DTD entities are an example of this, but this is not limited to DTDs. The base URI tells you where these nodes came from. If there is no base URI for the nodes being returned (for example, they were parsed from an in-memory string), String.Empty is returned.
Gets the base URI of the current node.
Property
2.0.0.0
4.0.0.0
System.Boolean
To be added.
In the dnprdnext, the recommended practice is to create instances using the class and the method. This allows you to take full advantage of all the new features introduced in the dnprdnshort. For more information, see Creating XML Readers.
The binary content read methods include the , , , and methods.
Gets a value indicating whether the implements the binary content read methods.
Property
1.0.5000.0
2.0.0.0
4.0.0.0
System.Boolean
To be added.
In the dnprdnext, the recommended practice is to create instances using the class and the method. This allows you to take full advantage of all the new features introduced in the dnprdnshort. For more information, see Creating XML Readers.
Gets a value indicating whether this reader can parse and resolve entities.
Method
1.0.5000.0
2.0.0.0
4.0.0.0
System.Void
In the dnprdnext, the recommended practice is to create instances using the class and the method. This allows you to take full advantage of all the new features introduced in the dnprdnshort. For more information, see Creating XML Readers.
This method also releases any resources held while reading. If Close has already been called, no action is performed.
Changes the to Closed.
Property
1.0.5000.0
2.0.0.0
4.0.0.0
System.Int32
To be added.
In the dnprdnext, the recommended practice is to create instances using the class and the method. This allows you to take full advantage of all the new features introduced in the dnprdnshort. For more information, see Creating XML Readers.
Gets the depth of the current node in the XML document.
Property
1.0.5000.0
2.0.0.0
4.0.0.0
System.Boolean
To be added.
In the dnprdnext, the recommended practice is to create instances using the class and the method. This allows you to take full advantage of all the new features introduced in the dnprdnshort. For more information, see Creating XML Readers.
Gets a value indicating whether the reader is positioned at the end of the stream.
Method
1.0.5000.0
2.0.0.0
4.0.0.0
System.String
In the dnprdnext, the recommended practice is to create instances using the class and the method. This allows you to take full advantage of all the new features introduced in the dnprdnshort. For more information, see Creating XML Readers.
This method does not move the reader.
Gets the value of the attribute with the specified index.
The value of the specified attribute.
The index of the attribute. The index is zero-based. (The first attribute has index 0.)
Method
1.0.5000.0
2.0.0.0
4.0.0.0
System.String
In the dnprdnext, the recommended practice is to create instances using the class and the method. This allows you to take full advantage of all the new features introduced in the dnprdnshort. For more information, see Creating XML Readers.
This method does not move the reader.
If the reader is positioned on a DocumentType node, this method can be used to get the PUBLIC and SYSTEM literals, for example, reader.GetAttribute("PUBLIC")
Gets the value of the attribute with the specified name.
The value of the specified attribute. If the attribute is not found, null is returned.
The qualified name of the attribute.
Method
1.0.5000.0
2.0.0.0
4.0.0.0
System.String
In the dnprdnext, the recommended practice is to create instances using the class and the method. This allows you to take full advantage of all the new features introduced in the dnprdnshort. For more information, see Creating XML Readers.
The following XML contains an attribute in a specific namespace:
<test xmlns:dt="urn:datatypes" dt:type="int"/>
You can lookup the dt:type attribute using one argument (prefix and local name) or two arguments (local name and namespace URI):
String dt = reader.GetAttribute("dt:type");
String dt2 = reader.GetAttribute("type","urn:datatypes");
To lookup the xmlns:dt attribute, use one of the following arguments:
String dt3 = reader.GetAttribute("xmlns:dt");
String dt4 = reader.GetAttribute("dt",http://www.w3.org/2000/xmlns/);
You can also get this information using the property.
Gets the value of the attribute with the specified local name and namespace URI.
The value of the specified attribute. If the attribute is not found, null is returned.
The local name of the attribute.
The namespace URI of the attribute.
Property
1.0.5000.0
2.0.0.0
4.0.0.0
System.Boolean
To be added.
In the dnprdnext, the recommended practice is to create instances using the class and the method. This allows you to take full advantage of all the new features introduced in the dnprdnshort. For more information, see Creating XML Readers.
Gets a value indicating whether the current node has any attributes.
Property
1.0.5000.0
2.0.0.0
4.0.0.0
System.Boolean
To be added.
In the dnprdnext, the recommended practice is to create instances using the class and the method. This allows you to take full advantage of all the new features introduced in the dnprdnshort. For more information, see Creating XML Readers.
The following table lists node types that have a value to return.
-
Node Type
Value
-
Attribute
The value of the attribute.
-
CDATA
The content of the CDATA section.
-
Comment
The content of the comment.
-
DocumentType
The internal subset.
-
ProcessingInstruction
The entire content, excluding the target.
-
SignificantWhitespace
The white space between markup in a mixed content model.
-
Text
The content of the text node.
-
Whitespace
The white space between markup.
-
XmlDeclaration
The content of the declaration.
Gets a value indicating whether the current node can have a .
Property
1.0.5000.0
2.0.0.0
4.0.0.0
System.Boolean
To be added.
In the dnprdnext, the recommended practice is to create instances using the class and the method. This allows you to take full advantage of all the new features introduced in the dnprdnshort. For more information, see Creating XML Readers.
This property applies to attribute nodes only. If the reader is not positioned on an attribute node, this property returns false.
Gets a value indicating whether the current node is an attribute that was generated from the default value defined in the document type definition (DTD) or schema.
Property
1.0.5000.0
2.0.0.0
4.0.0.0
System.Boolean
To be added.
In the dnprdnext, the recommended practice is to create instances using the class and the method. This allows you to take full advantage of all the new features introduced in the dnprdnshort. For more information, see Creating XML Readers.
This property enables you to determine the difference between the following:
<item num="123"/> (IsEmptyElement is true).
<item num="123"> (IsEmptyElement is false, although element content is empty).
A corresponding EndElement node is not generated for empty elements.
Gets a value indicating whether the current node is an empty element (for example, <MyElement/>).
Property
System.String
To be added.
To be added.
To be added.
To be added.
1.0.5000.0
2.0.0.0
Property
System.String
To be added.
To be added.
To be added.
To be added.
1.0.5000.0
2.0.0.0
Property
System.String
To be added.
To be added.
To be added.
To be added.
To be added.
1.0.5000.0
2.0.0.0
Property
1.0.5000.0
2.0.0.0
4.0.0.0
System.String
To be added.
In the dnprdnext, the recommended practice is to create instances using the class and the method. This allows you to take full advantage of all the new features introduced in the dnprdnshort. For more information, see Creating XML Readers.
Gets the local name of the current node.
Method
1.0.5000.0
2.0.0.0
4.0.0.0
System.String
In the dnprdnext, the recommended practice is to create instances using the class and the method. This allows you to take full advantage of all the new features introduced in the dnprdnshort. For more information, see Creating XML Readers.
In the following XML string, if the reader is positioned on the href attribute, the prefix a is resolved by calling reader.LookupNamespace("a"). The returned string is urn:456.
<root xmlns:a="urn:456">
<item>
<ref href="a:b"/>
</item>
</root>
Resolves a namespace prefix in the current element's scope.
The namespace URI to which the prefix maps or null if no matching prefix is found.
The prefix whose namespace URI you want to resolve. To match the default namespace, pass an empty string. This string does not have to be atomized.
Property
1.0.5000.0
2.0.0.0
4.0.0.0
System.Xml.XmlParserContext
To be added.
To be added.
To be added.
Method
1.0.5000.0
2.0.0.0
4.0.0.0
System.Void
In the dnprdnext, the recommended practice is to create instances using the class and the method. This allows you to take full advantage of all the new features introduced in the dnprdnshort. For more information, see Creating XML Readers.
Moves to the attribute with the specified index.
The index of the attribute.
Method
1.0.5000.0
2.0.0.0
4.0.0.0
System.Boolean
In the dnprdnext, the recommended practice is to create instances using the class and the method. This allows you to take full advantage of all the new features introduced in the dnprdnshort. For more information, see Creating XML Readers.
After calling this method, the , , and properties reflect the properties of that attribute.
Moves to the attribute with the specified name.
true if the attribute is found; otherwise, false. If false, the reader's position does not change.
The qualified name of the attribute.
Method
1.0.5000.0
2.0.0.0
4.0.0.0
System.Boolean
In the dnprdnext, the recommended practice is to create instances using the class and the method. This allows you to take full advantage of all the new features introduced in the dnprdnshort. For more information, see Creating XML Readers.
After calling this method, the , , and properties reflect the properties of that attribute.
Moves to the attribute with the specified local name and namespace URI.
true if the attribute is found; otherwise, false. If false, the reader's position does not change.
The local name of the attribute.
The namespace URI of the attribute.
Method
1.0.5000.0
2.0.0.0
4.0.0.0
System.Boolean
In the dnprdnext, the recommended practice is to create instances using the class and the method. This allows you to take full advantage of all the new features introduced in the dnprdnshort. For more information, see Creating XML Readers.
Use this method to return to an element after navigating through its attributes. This method moves the reader to one of the following node types: Element, DocumentType, or XmlDeclaration.
Moves to the element that contains the current attribute node.
true if the reader is positioned on an attribute (the reader moves to the element that owns the attribute); false if the reader is not positioned on an attribute (the position of the reader does not change).
Method
1.0.5000.0
2.0.0.0
4.0.0.0
System.Boolean
In the dnprdnext, the recommended practice is to create instances using the class and the method. This allows you to take full advantage of all the new features introduced in the dnprdnshort. For more information, see Creating XML Readers.
Moves to the first attribute.
true if an attribute exists (the reader moves to the first attribute); otherwise, false (the position of the reader does not change).
Method
1.0.5000.0
2.0.0.0
4.0.0.0
System.Boolean
In the dnprdnext, the recommended practice is to create instances using the class and the method. This allows you to take full advantage of all the new features introduced in the dnprdnshort. For more information, see Creating XML Readers.
If the current node is not an attribute node, this method is equivalent to . If MoveToNextAttribute returns true, the reader moves to the next attribute; otherwise, the position of the reader does not change.
Moves to the next attribute.
true if there is a next attribute; false if there are no more attributes.
Property
1.0.5000.0
2.0.0.0
4.0.0.0
System.String
To be added.
In the dnprdnext, the recommended practice is to create instances using the class and the method. This allows you to take full advantage of all the new features introduced in the dnprdnshort. For more information, see Creating XML Readers.
Gets the qualified name of the current node.
Property
1.0.5000.0
2.0.0.0
4.0.0.0
System.String
To be added.
In the dnprdnext, the recommended practice is to create instances using the class and the method. This allows you to take full advantage of all the new features introduced in the dnprdnshort. For more information, see Creating XML Readers.
This property is relevant to Element and Attribute nodes only.
Gets the namespace URI (as defined in the W3C Namespace specification) of the node on which the reader is positioned.
Property
1.0.5000.0
2.0.0.0
4.0.0.0
System.Xml.XmlNameTable
To be added.
In the dnprdnext, the recommended practice is to create instances using the class and the method. This allows you to take full advantage of all the new features introduced in the dnprdnshort. For more information, see Creating XML Readers.
All node and attribute names returned from this class are atomized using the NameTable. When the same name is returned multiple times (for example, Customer), then the same String object is returned for that name. This makes it possible for you to write efficient code that does object comparisons on these strings instead of expensive string comparisons.
Gets the associated with this implementation.
Property
1.0.5000.0
2.0.0.0
4.0.0.0
System.Xml.XmlNodeType
To be added.
In the dnprdnext, the recommended practice is to create instances using the class and the method. This allows you to take full advantage of all the new features introduced in the dnprdnshort. For more information, see Creating XML Readers.
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.
In the dnprdnext, the recommended practice is to create instances using the class and the method. This allows you to take full advantage of all the new features introduced in the dnprdnshort. For more information, see Creating XML Readers.
Gets the namespace prefix associated with the current node.
Property
System.Char
To be added.
In the dnprdnext, the recommended practice is to create instances using the class and the method. This allows you to take full advantage of all the new features introduced in the dnprdnshort. For more information, see Creating XML Readers.
Gets the quotation mark character used to enclose the value of an attribute node.
1.0.5000.0
2.0.0.0
Method
1.0.5000.0
2.0.0.0
4.0.0.0
System.Boolean
In the dnprdnext, the recommended practice is to create instances using the class and the method. This allows you to take full advantage of all the new features introduced in the dnprdnshort. For more information, see Creating XML Readers.
When a reader is first created and initialized, there is no information available. You must call Read to read the first node.
Reads the next node from the stream.
true if the next node was read successfully; false if there are no more nodes to read.
Method
1.0.5000.0
2.0.0.0
4.0.0.0
System.Boolean
In the dnprdnext, the recommended practice is to create instances using the class and the method. This allows you to take full advantage of all the new features introduced in the dnprdnshort. For more information, see Creating XML Readers.
Use this method after calling to read through the text or entity reference nodes that make up the attribute value. The of the attribute value nodes is one plus the depth of the attribute node; it increments and decrements by one when you step into and out of general entity references.
Parses the attribute value into one or more Text, EntityReference, or EndEntity nodes.
true if there are nodes to return.
false if the reader is not positioned on an attribute node when the initial call is made or if all the attribute values have been read.
An empty attribute, such as, misc="", returns true with a single node with a value of String.Empty.
Method
2.0.0.0
4.0.0.0
System.Int32
In the dnprdnext, the recommended practice is to create instances using the class and the method. This allows you to take full advantage of all the new features introduced in the dnprdnshort. For more information, see Creating XML Readers.
This method streams the content, decodes the Base64 content, and returns the decoded binary bytes (for example, an inline Base64 encoded GIF image) into the buffer. This method can be called successively to read large streams of embedded text. For more information, see RFC 1521, "MIME (Multipurpose Internet Mail Extensions) Part One: Mechanisms for Specifying and Describing the Format of Internet Message Bodies". You can obtain RFCs from the Request for Comments Web site at http://www.rfc-editor.org.
You should not access any of the reader properties between calls to the method until the method returns the value 0.
This method has the following behavior:
-
returns the value 0 when it has reached the end of the byte stream it was operating on. The reader is positioned on the first non-content node.
-
If you ask for fewer, or the exact number, of bytes than are left in the stream the reader remains in its current position.
-
is not supported on the following XML node types: Element, XmlDeclaration, None, Document, DocumentType, Notation, Entity, DocumentFragment.
Reads the content and returns the Base64 decoded binary bytes.
The number of bytes written to the buffer.
The buffer into which to copy the resulting text. This value cannot be null.
The offset into the buffer where to start copying the result.
The maximum number of bytes to copy into the buffer. The actual number of bytes copied is returned from this method.
Method
2.0.0.0
4.0.0.0
System.Int32
In the dnprdnext, the recommended practice is to create instances using the class and the method. This allows you to take full advantage of all the new features introduced in the dnprdnshort. For more information, see Creating XML Readers.
This method streams the content, decodes the BinHex content, and returns the decoded binary bytes (for example, an inline BinHex encoded GIF image) into the buffer. This method can be called successively to read large streams of embedded text.
You should not access any of the reader properties between calls to the method until the method returns the value 0.
This method has the following behavior:
-
returns the value 0 when it has reached the end of the byte stream it was operating on. The reader is positioned on the first non-content node.
-
If you ask for fewer, or the exact number, of bytes than are left in the stream the reader remains in its current position.
-
is not supported on the following XML node types: Element, XmlDeclaration, None, Document, DocumentType, Notation, Entity, DocumentFragment.
Reads the content and returns the BinHex decoded binary bytes.
The number of bytes written to the buffer.
The buffer into which to copy the resulting text. This value cannot be null.
The offset into the buffer where to start copying the result.
The maximum number of bytes to copy into the buffer. The actual number of bytes copied is returned from this method.
Method
2.0.0.0
4.0.0.0
System.Int32
In the dnprdnext, the recommended practice is to create instances using the class and the method. This allows you to take full advantage of all the new features introduced in the dnprdnshort. For more information, see Creating XML Readers.
This method reads the content, decodes it using Base64 encoding, and returns the decoded binary bytes (for example, an inline Base64 encoded GIF image) into the buffer. For more information, see RFC 1521, "MIME (Multipurpose Internet Mail Extensions) Part One: Mechanisms for Specifying and Describing the Format of Internet Message Bodies". You can obtain RFCs from the Request for Comments Web site at http://www.rfc-editor.org.
This method can only read simple-content elements. The element can contain text, white space, significant white space, CDATA sections, comments and processing instructions. It can also contain entity references, which are automatically expanded. The element cannot have child elements.
This method is very similar to the method except that it can only be called on element node types.
If the count value is higher than the number of bytes in the document, or if it is equal to the number of bytes in the document, the reads all the remaining bytes in the document and returns the number of bytes read. The next method call returns a zero and moves the reader to the node following the node.
If you call before all of the element content is consumed, the reader may behave as if the first content was consumed and then the method was called. This means that the reader reads all the text until the end element is encountered. It then reads the end tag node, read the next node, and then position itself on the next subsequent node.
Reads the element and decodes the Base64 content.
The number of bytes written to the buffer.
The buffer into which to copy the resulting text. This value cannot be null.
The offset into the buffer where to start copying the result.
The maximum number of bytes to copy into the buffer. The actual number of bytes copied is returned from this method.
Method
2.0.0.0
4.0.0.0
System.Int32
In the dnprdnext, the recommended practice is to create instances using the class and the method. This allows you to take full advantage of all the new features introduced in the dnprdnshort. For more information, see Creating XML Readers.
This method reads the element content, decodes it using BinHex encoding, and returns the decoded binary bytes (for example, an inline BinHex encoded GIF image) into the buffer.
This method can only read simple-content elements. The element can contain text, white space, significant white space, CDATA sections, comments and processing instructions. It can also contain entity references, which are automatically expanded. The element cannot have child elements.
This method is very similar to the method except that it can only be called on element node types.
If the count value is higher than the number of bytes in the document, or if it is equal to the number of bytes in the document, the reads all the remaining bytes in the document and returns the number of bytes read. The next method call returns a zero and moves the reader to the node following the node.
If you call before all of the element content is consumed, the reader may behave as if the first content was consumed and then the method was called. This means that the reader reads all the text until the end element is encountered. It then reads the end tag node, read the next node, and then position itself on the next subsequent node.
Reads the element and decodes the BinHex content.
The number of bytes written to the buffer.
The buffer into which to copy the resulting text. This value cannot be null.
The offset into the buffer where to start copying the result.
The maximum number of bytes to copy into the buffer. The actual number of bytes copied is returned from this method.
Property
1.0.5000.0
2.0.0.0
4.0.0.0
System.Xml.ReadState
To be added.
In the dnprdnext, the recommended practice is to create instances using the class and the method. This allows you to take full advantage of all the new features introduced in the dnprdnshort. For more information, see Creating XML Readers.
Gets the state of the reader.
Method
1.0.5000.0
2.0.0.0
4.0.0.0
System.String
In the dnprdnext, the recommended practice is to create instances using the class and the method. This allows you to take full advantage of all the new features introduced in the dnprdnshort. For more information, see Creating XML Readers.
If positioned on an element, ReadString concatenates all text, significant white space, white space, and CData section node types together and returns the concatenated data as the element content. It stops when any markup is encountered. This could occur in a mixed content model, or when an element end tag is read.
If positioned on a text-like node, ReadString performs the same concatenation from the text node to the element end tag. If the reader is positioned on an attribute text node, ReadString has the same functionality as if the reader were position on the element start tag. It returns all the concatenated element text nodes.
Reads the contents of an element or text node as a string.
The contents of the element or text-like node (This can include CDATA, Text nodes, and so on). This can be an empty string if the reader is positioned on something other than an element or text node, or if there is no more text content to return in the current context.
Note: The text node can be either an element or an attribute text node.
Method
1.0.5000.0
2.0.0.0
4.0.0.0
System.Void
In the dnprdnext, the recommended practice is to create instances using the class and the method. This allows you to take full advantage of all the new features introduced in the dnprdnshort. For more information, see Creating XML Readers.
If the reader is positioned on an EntityReference node (XmlNodeType.EntityReference), if is called after calling this method, the entity replacement text is parsed. When the entity replacement text is finished, an EndEntity node is returned to close the entity reference scope.
After calling this method, if the entity is part of an attribute value, you must call to step into the entity.
Resolves the entity reference for EntityReference nodes.
Property
2.0.0.0
4.0.0.0
System.Xml.Schema.IXmlSchemaInfo
To be added.
In the dnprdnext, the recommended practice is to create instances using the class and the method. This allows you to take full advantage of all the new features introduced in the dnprdnshort. For more information, see Creating XML Readers.
The interface represents the Post Schema Validation Infoset (PSVI) of the underlying XML node. The PSVI contents of this property are set after the node has been validated.
Gets the schema information that has been assigned to the current node.
Method
1.0.5000.0
2.0.0.0
4.0.0.0
System.Void
In the dnprdnext, the recommended practice is to create instances using the class and the method. This allows you to take full advantage of all the new features introduced in the dnprdnshort. For more information, see Creating XML Readers.
For example, suppose you have the following XML input:
<a name="bob" age="123">
<x/>abc<y/>
</a>
<b>
...
</b>
If the reader is positioned on the "<a>" node or any of its attributes, calling Skip positions the reader to the "<b>" node.
If the reader is positioned on a leaf node already (such as element "x" or the text node "abc"), calling Skip is the same as calling .
This method checks for well-formed XML.
Skips the children of the current node.
Method
2.0.0.0
4.0.0.0
System.Collections.Generic.IDictionary<System.String,System.String>
This member is an explicit interface member implementation. It can be used only when the instance is cast to an interface.
For a description of this member, see .
object that contains the namespaces that are in scope.
object.
Method
2.0.0.0
4.0.0.0
System.String
To be added.
This member is an explicit interface member implementation. It can be used only when the instance is cast to an interface.
For a description of this member, see .
object that contains the namespace prefix.
Property
1.0.5000.0
2.0.0.0
4.0.0.0
System.String
To be added.
In the dnprdnext, the recommended practice is to create instances using the class and the method. This allows you to take full advantage of all the new features introduced in the dnprdnshort. For more information, see Creating XML Readers.
Gets the text value of the current node.
Property
1.0.5000.0
2.0.0.0
4.0.0.0
System.String
To be added.
In the dnprdnext, the recommended practice is to create instances using the class and the method. This allows you to take full advantage of all the new features introduced in the dnprdnshort. For more information, see Creating XML Readers.
This property represents the xml:lang scope within which the current node resides. For example, here is an XML fragment with xml:lang set to US English in the root element:
<root xml:lang="en-us">
<name>Fred</name>
</root>
When the reader is positioned on the name element, you can use this property to find that it is in the scope of a US English xml:lang attribute.
The string returned is also in .
Gets the current xml:lang scope.
Property
1.0.5000.0
2.0.0.0
4.0.0.0
System.Xml.XmlSpace
To be added.
In the dnprdnext, the recommended practice is to create instances using the class and the method. This allows you to take full advantage of all the new features introduced in the dnprdnshort. For more information, see Creating XML Readers.
Gets the current xml:space scope.