Click or drag to resize
XmlReaderCreate Method (TextReader)
Creates a new System.Xml.XmlReader instance with the specified System.IO.TextReader.

Namespace: System.Xml
Assembly: CSharpXamlForHtml5.System.Xml.dll (in CSharpXamlForHtml5.System.Xml.dll.dll) Version: 1.0.0.0
Syntax
C#
public static XmlReader Create(
	TextReader input
)

Parameters

input
Type: System.IOTextReader
The System.IO.TextReader from which to read the XML data. Because a System.IO.TextReader returns a stream of Unicode characters, the encoding specified in the XML declaration is not used by the System.Xml.XmlReader to decode the data stream.

Return Value

Type: XmlReader
An System.Xml.XmlReader object to read the XML data.
See Also