XmlUtilsCreateXmlReader Method (Stream) |
Creates a new XML text reader which will read xml from the input stream specified. It creates an XmlTextReader, as the XmlReader.Create()
routine creates always a normalizing reader which always converts CRLFs into \n.
Namespace:
SD.LLBLGen.Pro.Core.Xml
Assembly:
SD.LLBLGen.Pro.Core (in SD.LLBLGen.Pro.Core.dll) Version: 5.6.0.0 (5.6.19.0117)
Syntax public static XmlReader CreateXmlReader(
Stream inputStream
)
Public Shared Function CreateXmlReader (
inputStream As Stream
) As XmlReader
Parameters
- inputStream
- Type: System.IOStream
The input stream. This stream is expected to be ready to use
Return Value
Type:
XmlReader
ready to use xmlreader. This reader is in its initial state
See Also