XmlReader.ReadSubtree Method
[ This article is for Windows Phone 8 developers. If you’re developing for Windows 10, see the latest documentation. ]
Returns a new XmlReader instance that can be used to read the current node, and all its descendants.
Assembly: System.Xml (in System.Xml.dll)
Return Value
Type: System.Xml.XmlReaderA new XmlReader instance set to ReadState.Initial. A call to the Read method positions the new XmlReader on the node that was current before the call to ReadSubtree method.
| Exception | Condition |
|---|---|
| InvalidOperationException | The XmlReader is not positioned on an element when this method is called. |
ReadSubtree can be called only on element nodes. When the entire sub-tree has been read, calls to the Read method returns false. When the new XmlReader has been closed, the original XmlReader will be positioned on the EndElement node of the sub-tree. Thus, if you called the ReadSubtree method on the start tag of the book element, after the sub-tree has been read and the new XmlReader has been closed, the original XmlReader is positioned on the end tag of the book element.
You should not perform any operations on the original XmlReader until the new XmlReader has been closed. This action is not supported and can result in unpredictable behavior.
Note: |
|---|
The ReadSubtree method is not intended to create a copy of the XML data that you can work with independently. Rather, it can be used create a boundary around an XML element. This is useful if you need to pass data to another component for processing and you wish to limit how much of your data the component can access. When you pass an XmlReader returned by the ReadSubtree method to another application, the application can access only that XML element, rather than the entire XML document. |
Dim xmlString As String = _ "<bookstore>" & _ "<book genre='novel' ISBN='10-861003-324'>" & _ "<title>The Handmaid's Tale</title>" & _ "<price>19.95</price>" & _ "</book>" & _ "<book genre='novel' ISBN='1-861001-57-5'>" & _ "<title>Pride And Prejudice</title>" & _ "<price>24.95</price>" & _ "</book>" & _ "</bookstore>" ' Load the file and ignore all white space. Dim settings As New XmlReaderSettings() settings.IgnoreWhitespace = True Using reader As XmlReader = XmlReader.Create(New StringReader(xmlString), settings) ' Position the reader on the second book node reader.ReadToFollowing("book") reader.Skip() ' Create another reader that contains just the second book node. Dim inner As XmlReader = reader.ReadSubtree() ' Do additional processing on the inner reader. After you ' are done, you can call Close on the inner reader and ' continue processing using the original reader. End Using
Note: