What is XMLReader?
The text reader from which to read the XML data. A text reader returns a stream of Unicode characters, so the encoding specified in the XML declaration isn’t used by the XML reader to decode the data stream. The settings for the new XmlReader instance.
How do I create a new XMLReader instance?
Creates a new XmlReader instance by using the specified XML reader and settings. public static System.Xml. XmlReader Create ( System.Xml.XmlReader reader, System.Xml.XmlReaderSettings settings);
How do I convert an XML file to a nodereader?
Dim reader As XmlReader = XmlReader.Create (nodeReader, settings) ‘ Parse the XML file. While reader.Read () End While This method allows you add additional features to an underlying XmlReader object.

How do I stream fragments using an XMLReader in Visual Basic?
This article shows how to stream fragments using an XmlReader in C# and Visual Basic. One of the most effective ways to use an XmlReader to read XElement objects is to write your own custom axis method. An axis method typically returns a collection such as IEnumerable of XElement, as shown in the example in this article.