BindingCollection::CopyTo Method (array<Binding^>^, Int32)

 

Copies the entire BindingCollection to a compatible one-dimensional array of type Binding, starting at the specified zero-based index of the target array.

Namespace:   System.Web.Services.Description
Assembly:  System.Web.Services (in System.Web.Services.dll)

public:
void CopyTo(
	array<Binding^>^ array,
	int index
)

Parameters

array
Type: array<System.Web.Services.Description::Binding^>^

An array of type Binding serving as the destination for the copy action.

index
Type: System::Int32

The zero-based index at which to start placing the copied collection.

array<Binding^>^myBindings = gcnew array<Binding^>(myServiceDescription->Bindings->Count);

// Copy BindingCollection to an Array.
myServiceDescription->Bindings->CopyTo( myBindings, 0 );
Console::WriteLine( "\n\n Displaying array copied from BindingCollection" );
for ( int i = 0; i < myServiceDescription->Bindings->Count; ++i )
{
   Console::WriteLine( "\nBinding {0}", i );
   Console::WriteLine( "\t Name : {0}", myBindings[ i ]->Name );
   Console::WriteLine( "\t Type : {0}", myBindings[ i ]->Type );
}

.NET Framework
Available since 1.1
Return to top
Show: