DotNetWikiBot Framework Documentation
This helper function constructs XPathDocument object, makes XPath query and returns XPathNodeIterator object for selected nodes.

Namespace: DotNetWikiBot
Assembly: DotNetWikiBot (in DotNetWikiBot.dll) Version: 0.0.0.0

Syntax

C#
public static XPathNodeIterator GetXMLIterator(
	string xmlSource,
	string xpathQuery,
	XmlNamespaceManager xmlNs
)

Parameters

xmlSource
Type: System..::..String
Source XML data.
xpathQuery
Type: System..::..String
XPath query to select specific nodes in XML data.
xmlNs
Type: System.Xml..::..XmlNamespaceManager
XML namespace manager.

Return Value

Type: XPathNodeIterator
XPathNodeIterator object.

See Also