XmlElement.SelectNodesNS(String, Object) 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
将指定的模式匹配操作应用于此节点的上下文,并将匹配节点的列表作为 XmlNodeList 返回。
public:
virtual XmlNodeList ^ SelectNodesNS(Platform::String ^ xpath, Platform::Object ^ namespaces) = SelectNodesNS;
XmlNodeList SelectNodesNS(winrt::hstring const& xpath, IInspectable const& namespaces);
public XmlNodeList SelectNodesNS(string xpath, object namespaces);
function selectNodesNS(xpath, namespaces)
Public Function SelectNodesNS (xpath As String, namespaces As Object) As XmlNodeList
参数
- xpath
-
String
Platform::String
winrt::hstring
指定 XPath 表达式。
- namespaces
-
Object
Platform::Object
IInspectable
包含一个字符串,该字符串指定在需要外部定义新命名空间时要在 XPath 表达式中使用的命名空间。 命名空间以 XML 样式定义为命名空间声明属性的空格分隔列表。 也可以使用此属性来设置默认命名空间。
返回
通过应用给定的模式匹配操作选择的节点集合。 如果未选择任何节点,则返回空集合。
实现
M:Windows.Data.Xml.Dom.IXmlNodeSelector.SelectNodesNS(System.String,System.Object)
M:Windows.Data.Xml.Dom.IXmlNodeSelector.SelectNodesNS(Platform::String,Platform::Object)
M:Windows.Data.Xml.Dom.IXmlNodeSelector.SelectNodesNS(winrt::hstring,IInspectable)
示例
var nodes = node.SelectNodesNS("//mux:TreeView", "xmlns:mux='using:Microsoft.UI.Xaml.Controls'");
auto nodes = node.SelectNodesNS(L"//mux:TreeView", winrt::box_value(L"xmlns:mux='using:Microsoft.UI.Xaml.Controls'"));
注解
查询中的前缀是使用指定的命名空间声明解析的。