ExpressionBindingCollection.CopyTo Method

Definition

Copies all the ExpressionBinding objects from the ExpressionBindingCollection collection to a one-dimensional array, starting at the specified index in the target array.

Overloads

CopyTo(Array, Int32)

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

Copies all the ExpressionBinding objects from the ExpressionBindingCollection collection to a one-dimensional array, starting at the specified index in the target array.

CopyTo(ExpressionBinding[], Int32)

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

Copies all the ExpressionBinding objects from the ExpressionBindingCollection collection to a one-dimensional array of ExpressionBinding objects, starting at the specified index in the target array.

CopyTo(Array, Int32)

Copies all the ExpressionBinding objects from the ExpressionBindingCollection collection to a one-dimensional array, starting at the specified index in the target array.

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

public:
 virtual void CopyTo(Array ^ array, int index);
public void CopyTo (Array array, int index);
abstract member CopyTo : Array * int -> unit
override this.CopyTo : Array * int -> unit
Public Sub CopyTo (array As Array, index As Integer)

Parameters

array
Array

The zero-based array that receives the ExpressionBinding objects copied from the collection.

index
Int32

The position in the target array at which the array starts receiving the copied items.

Implements

Applies to

CopyTo(ExpressionBinding[], Int32)

Copies all the ExpressionBinding objects from the ExpressionBindingCollection collection to a one-dimensional array of ExpressionBinding objects, starting at the specified index in the target array.

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

public:
 void CopyTo(cli::array <System::Web::UI::ExpressionBinding ^> ^ array, int index);
public void CopyTo (System.Web.UI.ExpressionBinding[] array, int index);
member this.CopyTo : System.Web.UI.ExpressionBinding[] * int -> unit
Public Sub CopyTo (array As ExpressionBinding(), index As Integer)

Parameters

array
ExpressionBinding[]

The zero-based array of ExpressionBinding objects that receives the ExpressionBinding objects copied from the collection.

index
Int32

The position in the target array at which the array starts receiving the copied items.

Applies to