Skip to content

Latest commit

 

History

History
38 lines (27 loc) · 1.34 KB

xmldocument_selectnodesns_2126476717.md

File metadata and controls

38 lines (27 loc) · 1.34 KB
-api-id -api-type
M:Windows.Data.Xml.Dom.XmlDocument.SelectNodesNS(System.String,System.Object)
winrt method

Windows.Data.Xml.Dom.XmlDocument.SelectNodesNS

-description

Applies the specified pattern-matching operation to this node's context and returns the list of matching nodes as an XmlNodeList.

-parameters

-param xpath

Specifies an XPath expression.

-param namespaces

Contains a string that specifies namespaces for use in XPath expressions when it is necessary to define new namespaces externally. Namespaces are defined in the XML style, as a space-separated list of namespace declaration attributes. You can use this property to set the default namespace as well.

-returns

The collection of nodes selected by applying the given pattern-matching operation. If no nodes are selected, returns an empty collection.

-remarks

Prefixes in the query are resolved using the specified namespace declarations.

-examples

var nodes = document.SelectNodesNS("//mux:TreeView", "xmlns:mux='using:Microsoft.UI.Xaml.Controls'");
auto nodes = document.SelectNodesNS(L"//mux:TreeView", winrt::box_value(L"xmlns:mux='using:Microsoft.UI.Xaml.Controls'"));

-see-also