XsltConvert.ToNodeSet Method

Definition

Converts the specified values to a sequence of nodes.

Overloads

ToNodeSet(IList<XPathItem>)

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

Converts the items to a sequence of nodes.

ToNodeSet(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.

ToNodeSet(IList<XPathItem>)

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

Converts the items to a sequence of nodes.

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

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

Parameters

listItems
IList<XPathItem>

A sequence of XPathItem instances.

Returns

A sequence of XPathNavigator instances.

Applies to

ToNodeSet(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::Collections::Generic::IList<System::Xml::XPath::XPathNavigator ^> ^ ToNodeSet(System::Xml::XPath::XPathItem ^ item);
public static System.Collections.Generic.IList<System.Xml.XPath.XPathNavigator> ToNodeSet (System.Xml.XPath.XPathItem item);
static member ToNodeSet : System.Xml.XPath.XPathItem -> System.Collections.Generic.IList<System.Xml.XPath.XPathNavigator>
Public Shared Function ToNodeSet (item As XPathItem) As IList(Of XPathNavigator)

Parameters

item
XPathItem

An instance of the XPathItem class.

Returns

An instance of the XmlQuerySequence<T> class.

Applies to