NGWS SDK Documentation  

This is preliminary documentation and subject to change.
To comment on this topic, please send us email at ngwssdk@microsoft.com. Thanks!

XmlTextReader Constructor (TextReader)

Initializes a new instance of the XmlTextReader class with the specified TextReader.

[Visual Basic]
Overloads Public Sub New( _
   ByVal input As TextReader _
)
[C#]
public XmlTextReader(
   TextReader input
);
[C++]
public: XmlTextReader(
   TextReader* input
);
[JScript]
public function XmlTextReader(
   input : TextReader
);

Parameters

input
The TextReader containing the XML data to read.

Remarks

It is assumed that the TextReader is already set to the correct encoding. This is used by clients who have already read some things from the stream in a multi-part MIME scenario.

See Also

XmlTextReader Class | XmlTextReader Members | System.NewXml Namespace | XmlTextReader Constructor Overload List