XmlEntityReference.SelectSingleNodeNS(String, Object) Method

Definition

Applies the specified pattern-matching operation to this node's context and returns the first matching node.

C#
public IXmlNode SelectSingleNodeNS(string xpath, object namespaces);

Parameters

xpath
String

Specifies an XPath expression.

namespaces
Object

Contains a string that specifies the namespaces to 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 first node that matches the given pattern-matching operation. If no nodes match the expression, this method returns a null value.

Implements

M:Windows.Data.Xml.Dom.IXmlNodeSelector.SelectSingleNodeNS(System.String,System.Object)

Examples

C#
var input = node.SelectSingleNodeNS("//*[@x:Name='Input']", "xmlns:x='http://schemas.microsoft.com/winfx/2006/xaml'");

Remarks

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

Applies to

Product Versions
WinRT Build 10240, Build 10586, Build 14383, Build 15063, Build 16299, Build 17134, Build 17763, Build 18362, Build 19041, Build 20348, Build 22000, Build 22621, Build 26100