This documentation is archived and is not being maintained.
Message::FindPartsByName Method
Visual Studio 2010
Searches the MessagePartCollection returned by the Parts property and returns an array of type MessagePart that contains the named instances.
Assembly: System.Web.Services (in System.Web.Services.dll)
Parameters
- partNames
- Type: array<System::String>
An array of names of the MessagePart instances to be returned.
| Exception | Condition |
|---|---|
| ArgumentException | No MessagePart instances with the specified names exist within the collection. |
The following example demonstrates the use of the FindPartsByName method.
// Get message from ServiceDescription. Message^ myMessage1 = myServiceDescription->Messages[ "AddHttpPostIn" ]; Console::WriteLine( "ServiceDescription : {0}", myMessage1->ServiceDescription ); array<String^>^myParts = gcnew array<String^>(2); myParts[ 0 ] = "a"; myParts[ 1 ] = "b"; array<MessagePart^>^myMessageParts = myMessage1->FindPartsByName( myParts ); Console::WriteLine( "Results of FindPartsByName operation:" ); for ( int i = 0; i < myMessageParts->Length; ++i ) { Console::WriteLine( "Part Name: {0}", myMessageParts[ i ]->Name ); Console::WriteLine( "Part Type: {0}", myMessageParts[ i ]->Type ); }
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: