BindingCollection::CopyTo Method (array<Binding^>^, Int32)
.NET Framework (current version)
Copies the entire BindingCollection to a compatible one-dimensional array of type Binding, starting at the specified zero-based index of the target array.
Assembly: System.Web.Services (in System.Web.Services.dll)
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
Available since 1.1
Show: