This documentation is archived and is not being maintained.

Message::FindPartsByName Method

Searches the MessagePartCollection returned by the Parts property and returns an array of type MessagePart that contains the named instances.

Namespace:  System.Web.Services.Description
Assembly:  System.Web.Services (in System.Web.Services.dll)

public:
array<MessagePart^>^ FindPartsByName(
	array<String^>^ partNames
)

Parameters

partNames
Type: array<System::String>

An array of names of the MessagePart instances to be returned.

Return Value

Type: array<System.Web.Services.Description::MessagePart>
An array of type MessagePart.

ExceptionCondition
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 );
}
// Get message from ServiceDescription.
Message* myMessage1 = myServiceDescription->Messages->Item[S"AddHttpPostIn"];
Console::WriteLine(S"ServiceDescription : {0}", myMessage1->ServiceDescription);
String* myParts[] = new String*[2];
myParts->Item[0] = S"a";
myParts->Item[1] = S"b";
MessagePart* myMessageParts[] = myMessage1->FindPartsByName(myParts);
Console::WriteLine(S"Results of FindPartsByName operation:");
for (int i=0;i<myMessageParts->Length; ++i)
{
   Console::WriteLine(S"Part Name: {0}", myMessageParts[i]->Name);
   Console::WriteLine(S"Part Type: {0}", myMessageParts[i]->Type);
}

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: