MessagePartCollection.Remove Method

Removes the first occurrence of the specified MessagePart from the MessagePartCollection.

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

public:
void Remove (
	MessagePart^ messagePart
)
public void Remove (
	MessagePart messagePart
)
public function Remove (
	messagePart : MessagePart
)
Not applicable.

Parameters

messagePart

The MessagePart to remove from the collection.

This method performs a linear search; therefore, the average execution time is proportional to Count.

The elements that follow the removed MessagePart move up to occupy the vacated spot.

The following example demonstrates the use of the Remove method.

Console::WriteLine( "Checking if message is AddHttpPostOut..." );
Message^ myMessage = myServiceDescription->Messages[ "AddHttpPostOut" ];
if ( myMessageCollection->Contains( myMessage ) )
{
   // Get the mssage part collection.
   MessagePartCollection^ myMessagePartCollection = myMessage->Parts;

   // Get the part named Body.
   MessagePart^ myMessagePart = myMessage->Parts[ "Body" ];
   if ( myMessagePartCollection->Contains( myMessagePart ) )
   {
      // Get the part named Body.
      Console::WriteLine( "Index of Body in MessagePart collection = {0}", myMessagePartCollection->IndexOf( myMessagePart ) );
      Console::WriteLine( "Deleting Body from MessagePart collection..." );
      myMessagePartCollection->Remove( myMessagePart );
      if ( myMessagePartCollection->IndexOf( myMessagePart ) == -1 )
               Console::WriteLine( "from the message AddHttpPostOut." );
   }
}

Console.WriteLine("Checking if message is AddHttpPostOut...");
Message myMessage = myServiceDescription.get_Messages().
    get_Item("AddHttpPostOut");
if (myMessageCollection.Contains(myMessage)) {
    // Get the message part collection.
    MessagePartCollection myMessagePartCollection = 
        myMessage.get_Parts();

    // Get the part named Body.
    MessagePart myMessagePart = myMessage.get_Parts().get_Item("Body");

    if (myMessagePartCollection.Contains(myMessagePart)) {
        // Get the index of the part named Body.
        Console.WriteLine("Index of Body in MessagePart collection = " 
            + myMessagePartCollection.IndexOf(myMessagePart));
        Console.WriteLine("Deleting Body from MessagePart "
            + "collection...");
        myMessagePartCollection.Remove(myMessagePart);
        if (myMessagePartCollection.IndexOf(myMessagePart) == -1) {
            Console.WriteLine("MessagePart Body successfully deleted " 
                + "from the message AddHttpPostOut.");
        }
    }
}

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.

.NET Framework

Supported in: 3.0, 2.0, 1.1, 1.0

Community Additions

ADD
Show: