System.Xml.XmlDocumentXPathExtensions
Provides extension methods for the XmlDocument and XmlNode for document navigation.
namespace System.Xml
{
public static class XmlDocumentXPathExtensions
{
public static XmlNodeList SelectNodes(this XmlNode node, string xpath);
public static XmlNodeList SelectNodes(this XmlNode node, string xpath, XmlNamespaceManager nsmgr);
public static XmlNode SelectSingleNode(this XmlNode node, string xpath);
public static XmlNode SelectSingleNode(this XmlNode node, string xpath, XmlNamespaceManager nsmgr);
public static XPathNavigator (this XmlNode node);
public static IXPathNavigable (this XmlNode node);
public static XPathNavigator (this XmlDocument document);
public static XPathNavigator (this XmlDocument document, XmlNode node);
}
}