XmlTextReader Constructor
.NET Framework 4.5
Initializes a new instance of the XmlTextReader.
This member is overloaded. For complete information about this member, including syntax, usage, and examples, click a name in the overload list.
| Name | Description | |
|---|---|---|
|
XmlTextReader() | Initializes a new instance of the XmlTextReader. |
|
XmlTextReader(Stream) | Initializes a new instance of the XmlTextReader class with the specified stream. |
|
XmlTextReader(String) | Initializes a new instance of the XmlTextReader class with the specified file. |
|
XmlTextReader(TextReader) | Initializes a new instance of the XmlTextReader class with the specified TextReader. |
|
XmlTextReader(XmlNameTable) | Infrastructure. Initializes a new instance of the XmlTextReader class with the specified XmlNameTable. |
|
XmlTextReader(Stream, XmlNameTable) | Initializes a new instance of the XmlTextReader class with the specified stream and XmlNameTable. |
|
XmlTextReader(String, Stream) | Initializes a new instance of the XmlTextReader class with the specified URL and stream. |
|
XmlTextReader(String, TextReader) | Initializes a new instance of the XmlTextReader class with the specified URL and TextReader. |
|
XmlTextReader(String, XmlNameTable) | Initializes a new instance of the XmlTextReader class with the specified file and XmlNameTable. |
|
XmlTextReader(TextReader, XmlNameTable) | Initializes a new instance of the XmlTextReader class with the specified TextReader and XmlNameTable. |
|
XmlTextReader(Stream, XmlNodeType, XmlParserContext) | Initializes a new instance of the XmlTextReader class with the specified stream, XmlNodeType, and XmlParserContext. |
|
XmlTextReader(String, Stream, XmlNameTable) | Initializes a new instance of the XmlTextReader class with the specified URL, stream and XmlNameTable. |
|
XmlTextReader(String, TextReader, XmlNameTable) | Initializes a new instance of the XmlTextReader class with the specified URL, TextReader and XmlNameTable. |
|
XmlTextReader(String, XmlNodeType, XmlParserContext) | Initializes a new instance of the XmlTextReader class with the specified string, XmlNodeType, and XmlParserContext. |
Note |
|---|
In the .NET Framework 2.0 release, the recommended practice is to create XmlReader instances using the XmlReader.Create method. This allows you to take full advantage of the new features introduced in this release. For more information, see Creating XML Readers. |