Message.FindPartsByName Method
.NET Framework 3.0
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)
Assembly: System.Web.Services (in system.web.services.dll)
public MessagePart[] FindPartsByName ( String[] partNames )
public function FindPartsByName ( partNames : String[] ) : MessagePart[]
Not applicable.
Parameters
- partNames
An array of names of the MessagePart instances to be returned.
Return Value
An array of type MessagePart.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.get_Messages().get_Item("AddHttpPostIn");
Console.WriteLine("ServiceDescription :"
+ myMessage1.get_ServiceDescription());
String myParts[] = new String[2];
myParts.set_Item(0, "a");
myParts.set_Item(1, "b");
MessagePart myMessageParts[] = myMessage1.FindPartsByName(myParts);
Console.WriteLine("Results of FindPartsByName operation:");
for (int i = 0; i < myMessageParts.length; ++i) {
Console.WriteLine("Part Name: "
+ ((MessagePart)myMessageParts.get_Item(i)).get_Name());
Console.WriteLine("Part Type: "
+ ((MessagePart)myMessageParts.get_Item(i)).get_Type());
}
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.Community Additions
ADD
Show: