XmlQuerySequence<T> Constructors
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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 |
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>()
- Source:
- XmlQuerySequence.cs
- Source:
- XmlQuerySequence.cs
- Source:
- XmlQuerySequence.cs
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)
- Source:
- XmlQuerySequence.cs
- Source:
- XmlQuerySequence.cs
- Source:
- XmlQuerySequence.cs
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)
- Source:
- XmlQuerySequence.cs
- Source:
- XmlQuerySequence.cs
- Source:
- XmlQuerySequence.cs
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)
- Source:
- XmlQuerySequence.cs
- Source:
- XmlQuerySequence.cs
- Source:
- XmlQuerySequence.cs
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.