XmlQueryNodeSequence Constructors

Definition

Initializes a new instance of the XmlQueryNodeSequence class.

Overloads

XmlQueryNodeSequence()

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

Initializes a new instance of the XmlQueryNodeSequence class.

XmlQueryNodeSequence(IList<XPathNavigator>)

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

Initializes a new instance of the XmlQueryNodeSequence class.

XmlQueryNodeSequence(Int32)

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

Initializes a new instance of the XmlQueryNodeSequence class.

XmlQueryNodeSequence(XPathNavigator)

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

Initializes a new instance of the XmlQueryNodeSequence class.

XmlQueryNodeSequence(XPathNavigator[], Int32)

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

Initializes a new instance of the XmlQueryNodeSequence class.

XmlQueryNodeSequence()

Source:
XmlQuerySequence.cs
Source:
XmlQuerySequence.cs
Source:
XmlQuerySequence.cs

Initializes a new instance of the XmlQueryNodeSequence class.

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

public:
 XmlQueryNodeSequence();
public XmlQueryNodeSequence ();
Public Sub New ()

Applies to

XmlQueryNodeSequence(IList<XPathNavigator>)

Source:
XmlQuerySequence.cs
Source:
XmlQuerySequence.cs
Source:
XmlQuerySequence.cs

Initializes a new instance of the XmlQueryNodeSequence class.

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

public:
 XmlQueryNodeSequence(System::Collections::Generic::IList<System::Xml::XPath::XPathNavigator ^> ^ list);
public XmlQueryNodeSequence (System.Collections.Generic.IList<System.Xml.XPath.XPathNavigator> list);
new System.Xml.Xsl.Runtime.XmlQueryNodeSequence : System.Collections.Generic.IList<System.Xml.XPath.XPathNavigator> -> System.Xml.Xsl.Runtime.XmlQueryNodeSequence
Public Sub New (list As IList(Of XPathNavigator))

Parameters

list
IList<XPathNavigator>

A sequence of XPathNavigator instances.

Applies to

XmlQueryNodeSequence(Int32)

Source:
XmlQuerySequence.cs
Source:
XmlQuerySequence.cs
Source:
XmlQuerySequence.cs

Initializes a new instance of the XmlQueryNodeSequence class.

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

public:
 XmlQueryNodeSequence(int capacity);
public XmlQueryNodeSequence (int capacity);
new System.Xml.Xsl.Runtime.XmlQueryNodeSequence : int -> System.Xml.Xsl.Runtime.XmlQueryNodeSequence
Public Sub New (capacity As Integer)

Parameters

capacity
Int32

A value of type Int32.

Applies to

XmlQueryNodeSequence(XPathNavigator)

Source:
XmlQuerySequence.cs
Source:
XmlQuerySequence.cs
Source:
XmlQuerySequence.cs

Initializes a new instance of the XmlQueryNodeSequence class.

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

public:
 XmlQueryNodeSequence(System::Xml::XPath::XPathNavigator ^ navigator);
public XmlQueryNodeSequence (System.Xml.XPath.XPathNavigator navigator);
new System.Xml.Xsl.Runtime.XmlQueryNodeSequence : System.Xml.XPath.XPathNavigator -> System.Xml.Xsl.Runtime.XmlQueryNodeSequence
Public Sub New (navigator As XPathNavigator)

Parameters

navigator
XPathNavigator

An instance of the XPathNavigator class.

Applies to

XmlQueryNodeSequence(XPathNavigator[], Int32)

Source:
XmlQuerySequence.cs
Source:
XmlQuerySequence.cs
Source:
XmlQuerySequence.cs

Initializes a new instance of the XmlQueryNodeSequence class.

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

public:
 XmlQueryNodeSequence(cli::array <System::Xml::XPath::XPathNavigator ^> ^ array, int size);
public XmlQueryNodeSequence (System.Xml.XPath.XPathNavigator[] array, int size);
new System.Xml.Xsl.Runtime.XmlQueryNodeSequence : System.Xml.XPath.XPathNavigator[] * int -> System.Xml.Xsl.Runtime.XmlQueryNodeSequence
Public Sub New (array As XPathNavigator(), size As Integer)

Parameters

array
XPathNavigator[]

An array of instances of the XPathNavigator class.

size
Int32

A value of type int.

Applies to