XmlQuerySequence<T> Constructors

Definition

Initializes a new instance of the XmlQuerySequence<T> class.

Overloads

XmlQuerySequence<T>()

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

Initializes a new instance of the XmlQuerySequence<T> class.

XmlQuerySequence<T>(Int32)

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

Initializes a new instance of the XmlQuerySequence<T> class.

XmlQuerySequence<T>(T)

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

Constructs a singleton XmlQuerySequence<T> that has value as its only element.

XmlQuerySequence<T>(T[], Int32)

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

Initializes a new instance of the XmlQuerySequence<T> class.

XmlQuerySequence<T>()

Initializes a new instance of the XmlQuerySequence<T> class.

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

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

Applies to

XmlQuerySequence<T>(Int32)

Initializes a new instance of the XmlQuerySequence<T> class.

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

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

Parameters

capacity
Int32

The size of this collection.

Applies to

XmlQuerySequence<T>(T)

Constructs a singleton XmlQuerySequence<T> that has value as its only element.

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

public:
 XmlQuerySequence(T value);
public XmlQuerySequence (T value);
new System.Xml.Xsl.Runtime.XmlQuerySequence<'T> : 'T -> System.Xml.Xsl.Runtime.XmlQuerySequence<'T>
Public Sub New (value As T)

Parameters

value
T

The only value in this XmlQuerySequence<T>.

Applies to

XmlQuerySequence<T>(T[], Int32)

Initializes a new instance of the XmlQuerySequence<T> class.

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

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

Parameters

array
T[]

An array of XmlQuerySequence<T> instances.

size
Int32

The size of the array.

Applies to