This documentation is archived and is not being maintained.

MessageCollection::CopyTo Method

Copies the entire MessageCollection to a compatible one-dimensional array of type Message, 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<Message^>^ array, 
	int index
)

Parameters

array
Type: array<System.Web.Services.Description::Message>

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

index
Type: System::Int32

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

The following example demonstrates the use of the CopyTo method.

// Create a Message Array. 
array<Message^>^myMessages = gcnew array<Message^>(myServiceDescription->Messages->Count);

// Copy MessageCollection to an array.
myServiceDescription->Messages->CopyTo( myMessages, 0 );
Console::WriteLine( "" );
Console::WriteLine( "Displaying Messages that were copied to Messagearray ..." );
Console::WriteLine( "" );
for ( int i = 0; i < myServiceDescription->Messages->Count; ++i )
   Console::WriteLine( "Message Name : {0}", myMessages[ i ]->Name );
// Create a Message Array.
Message* myMessages[] = new Message*[myServiceDescription->Messages->Count];
// Copy MessageCollection to an array.
myServiceDescription->Messages->CopyTo(myMessages, 0);
Console::WriteLine(S"");
Console::WriteLine(S"Displaying Messages that were copied to Messagearray ...");
Console::WriteLine(S"");
for (int i=0;i < myServiceDescription->Messages->Count; ++i)
   Console::WriteLine(S"Message Name : {0}", myMessages[i]->Name);

Windows 7, Windows Vista, Windows XP SP2, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP Starter Edition, Windows Server 2008 R2, Windows Server 2008, Windows Server 2003, Windows Server 2000 SP4, Windows Millennium Edition, Windows 98

The .NET Framework and .NET Compact Framework do not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.

.NET Framework

Supported in: 3.5, 3.0, 2.0, 1.1, 1.0
Show: