XsltConvert.ToNode Method

Definition

Converts the specified value to a node.

Overloads

ToNode(IList<XPathItem>)

This API supports the product infrastructure and is not intended to be used directly from your code.

Converts a specified value to a node.

ToNode(XPathItem)

This API supports the product infrastructure and is not intended to be used directly from your code.

Converts the specified value to a node.

ToNode(IList<XPathItem>)

Source:
XsltConvert.cs
Source:
XsltConvert.cs
Source:
XsltConvert.cs

Converts a specified value to a node.

This API supports the product infrastructure and is not intended to be used directly from your code.

public:
 static System::Xml::XPath::XPathNavigator ^ ToNode(System::Collections::Generic::IList<System::Xml::XPath::XPathItem ^> ^ listItems);
public static System.Xml.XPath.XPathNavigator ToNode (System.Collections.Generic.IList<System.Xml.XPath.XPathItem> listItems);
static member ToNode : System.Collections.Generic.IList<System.Xml.XPath.XPathItem> -> System.Xml.XPath.XPathNavigator
Public Shared Function ToNode (listItems As IList(Of XPathItem)) As XPathNavigator

Parameters

listItems
IList<XPathItem>

A sequence of XPathItem instances.

Returns

An instance of the XPathNavigator class.

Applies to

ToNode(XPathItem)

Source:
XsltConvert.cs
Source:
XsltConvert.cs
Source:
XsltConvert.cs

Converts the specified value to a node.

This API supports the product infrastructure and is not intended to be used directly from your code.

public:
 static System::Xml::XPath::XPathNavigator ^ ToNode(System::Xml::XPath::XPathItem ^ item);
public static System.Xml.XPath.XPathNavigator ToNode (System.Xml.XPath.XPathItem item);
static member ToNode : System.Xml.XPath.XPathItem -> System.Xml.XPath.XPathNavigator
Public Shared Function ToNode (item As XPathItem) As XPathNavigator

Parameters

item
XPathItem

An instance of the XPathItem class.

Returns

An instance of the XPathNavigator class.

Applies to