OperationMessageCollection.CopyTo Method

Copies the entire OperationMessageCollection to a compatible one-dimensional array of type OperationMessage, 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<OperationMessage^>^ array, 
	int index
)
public void CopyTo (
	OperationMessage[] array, 
	int index
)
public function CopyTo (
	array : OperationMessage[], 
	index : int
)
Not applicable.

Parameters

array

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

index

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

array<OperationMessage^>^myCollection = gcnew array<OperationMessage^>(myOperationMessageCollection->Count);
myOperationMessageCollection->CopyTo( myCollection, 0 );
Console::WriteLine( "Operation name(s) :" );
for ( int i = 0; i < myCollection->Length; i++ )
{
   Console::WriteLine( " {0}", myCollection[ i ]->Operation->Name );
}

OperationMessage myCollection[] = 
    new OperationMessage[myOperationMessageCollection.get_Count()];
myOperationMessageCollection.CopyTo(myCollection, 0);
Console.WriteLine("Operation name(s) :");
for (int i = 0; i < myCollection.get_Length(); i++) {
    Console.WriteLine(" " + myCollection[i].get_Operation().
        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.

.NET Framework

Supported in: 3.0, 2.0, 1.1, 1.0

Community Additions

ADD
Show: