ServiceCollection.CopyTo Method
.NET Framework 2.0
Copies the entire ServiceCollection to a one-dimensional array of type Service, 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)
Assembly: System.Web.Services (in system.web.services.dll)
public void CopyTo ( Service[] array, int index )
public function CopyTo ( array : Service[], index : int )
Not applicable.
Parameters
- array
An array of type Service serving as the destination for the copy action.
- index
The zero-based index at which to start placing the copied collection.
array<Service^>^myServiceArray = gcnew array<Service^>(myServiceDescription->Services->Count); // Copy the services into an array. myServiceDescription->Services->CopyTo( myServiceArray, 0 ); IEnumerator^ myEnumerator = myServiceArray->GetEnumerator(); Console::WriteLine( "The names of services in the array are" ); while ( myEnumerator->MoveNext() ) { Service^ myService1 = dynamic_cast<Service^>(myEnumerator->Current); Console::WriteLine( myService1->Name ); }
Service myServiceArray[] = new Service[myServiceDescription.
get_Services().get_Count()];
// Copy the services into an array.
myServiceDescription.get_Services().CopyTo(myServiceArray, 0);
IEnumerator myEnumerator = myServiceArray.GetEnumerator();
Console.WriteLine("The names of services in the array are");
while (myEnumerator.MoveNext()) {
Service myService1 = (Service)(myEnumerator.get_Current());
Console.WriteLine(myService1.get_Name());
}
Windows 98, Windows Server 2000 SP4, Windows Millennium Edition, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition
The Microsoft .NET Framework 3.0 is supported on Windows Vista, Microsoft Windows XP SP2, and Windows Server 2003 SP1.Community Additions
ADD
Show: