BindingCollection.CopyTo Method
.NET Framework 4.5
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)
Parameters
- array
- Type: 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.
Binding[] myBindings = new 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 " + i ); Console.WriteLine("\t Name : " + myBindings[i].Name); Console.WriteLine("\t Type : " + myBindings[i].Type); }
Windows 8, Windows Server 2012, Windows 7, Windows Vista SP2, Windows Server 2008 (Server Core Role not supported), Windows Server 2008 R2 (Server Core Role supported with SP1 or later; Itanium not supported)
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.