XmlDocumentXPathExtensions.SelectNodes 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
重载
SelectNodes(XmlNode, String) |
选择与指定 XPath 表达式匹配的节点列表。 |
SelectNodes(XmlNode, String, XmlNamespaceManager) |
选择与指定 XPath 表达式匹配的节点列表。 XPath 表达式中的任何前缀都使用提供的命名空间管理器进行解析。 |
SelectNodes(XmlNode, String)
选择与指定 XPath 表达式匹配的节点列表。
public:
[System::Runtime::CompilerServices::Extension]
static System::Xml::XmlNodeList ^ SelectNodes(System::Xml::XmlNode ^ node, System::String ^ xpath);
public static System.Xml.XmlNodeList SelectNodes (this System.Xml.XmlNode node, string xpath);
static member SelectNodes : System.Xml.XmlNode * string -> System.Xml.XmlNodeList
<Extension()>
Public Function SelectNodes (node As XmlNode, xpath As String) As XmlNodeList
参数
- node
- XmlNode
导航器最初定位在的节点。
- xpath
- String
要匹配的 XPath 表达式。
返回
一个集合,其中包含与指定的 XPath 表达式匹配的节点。
适用于
SelectNodes(XmlNode, String, XmlNamespaceManager)
选择与指定 XPath 表达式匹配的节点列表。 XPath 表达式中的任何前缀都使用提供的命名空间管理器进行解析。
public:
[System::Runtime::CompilerServices::Extension]
static System::Xml::XmlNodeList ^ SelectNodes(System::Xml::XmlNode ^ node, System::String ^ xpath, System::Xml::XmlNamespaceManager ^ nsmgr);
public static System.Xml.XmlNodeList SelectNodes (this System.Xml.XmlNode node, string xpath, System.Xml.XmlNamespaceManager nsmgr);
static member SelectNodes : System.Xml.XmlNode * string * System.Xml.XmlNamespaceManager -> System.Xml.XmlNodeList
<Extension()>
Public Function SelectNodes (node As XmlNode, xpath As String, nsmgr As XmlNamespaceManager) As XmlNodeList
参数
- node
- XmlNode
导航器最初定位在的节点。
- xpath
- String
要匹配的 XPath 表达式。
- nsmgr
- XmlNamespaceManager
用于解析 XPath 表达式前缀命名空间的命名空间管理器。
返回
一个集合,其中包含与指定的 XPath 表达式匹配的节点。