XmlReader.ReadToFollowing Method (String, String)
[ This article is for Windows Phone 8 developers. If you’re developing for Windows 10, see the latest documentation. ]
Reads until an element with the specified local name and namespace URI is found.
Assembly: System.Xml (in System.Xml.dll)
Parameters
- localName
- Type: System.String
The local name of the element.
- namespaceURI
- Type: System.String
The namespace URI of the element.
Return Value
Type: System.Booleantrue if a matching element is found; otherwise false and the XmlReader is in an end of file state.
This method is functionally equivalent executing the following::name XPath expression from the current node. It provides a quick way to find a named element in the XML document. It advances the reader to the next following element that matches the specified name and returns true if a matching element is found.
This method can be called on all node types.