Skip to content

Latest commit

 

History

History
37 lines (26 loc) · 1.33 KB

xmlcomment_selectnodesns_2126476717.md

File metadata and controls

37 lines (26 loc) · 1.33 KB
-api-id -api-type
M:Windows.Data.Xml.Dom.XmlComment.SelectNodesNS(System.String,System.Object)
winrt method

Windows.Data.Xml.Dom.XmlComment.SelectNodesNS

-description

Applies the specified pattern-matching operation to this node's context and returns the list of matching nodes as an XmlNodeList. This method is not applicable to this class and will throw an exception.

-parameters

-param xpath

Specifies an XPath expresssion.

-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

-examples

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'"));

-see-also