This documentation is archived and is not being maintained.
MessageCollection::CopyTo Method
Visual Studio 2010
Copies the entire MessageCollection to a compatible one-dimensional array of type Message, 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::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 );
Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows XP SP2 x64 Edition, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.
Show: