This documentation is archived and is not being maintained.

PortCollection::Remove Method

Removes the first occurrence of the specified Port from the PortCollection.

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

public:
void Remove(
	Port^ port
)

Parameters

port
Type: System.Web.Services.Description::Port

The Port 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 Port move up to occupy the vacated spot.

Service^ myService;
PortCollection^ myPortCollection;
ServiceDescription^ myServiceDescription = ServiceDescription::Read( "MathServiceItem_cs.wsdl" );
Console::WriteLine( "Total number of services : {0}", myServiceDescription->Services->Count );
for ( int i = 0; i < myServiceDescription->Services->Count; ++i )
{
   myService = myServiceDescription->Services[ i ];
   Console::WriteLine( "Name : {0}", myService->Name );
   myPortCollection = myService->Ports;

   // Create an array of ports.
   Console::WriteLine( "\nPort collection :" );
   for ( int i1 = 0; i1 < myService->Ports->Count; ++i1 )
   {
      Console::WriteLine( "Port[{0}] : {1}", i1, myPortCollection[ i1 ]->Name );
   }

   String^ strPort = myPortCollection[ 0 ]->Name;
   Port^ myPort = myPortCollection[ strPort ];
   Console::WriteLine( "\nIndex of Port[{0}] : {1}", strPort, myPortCollection->IndexOf( myPort ) );

   Port^ myPortTestRemove = myPortCollection[ 0 ];
   Console::WriteLine( "\nTotal number of ports before removing a port '{0}' is : {1}", myPortTestRemove->Name, myService->Ports->Count );
   myPortCollection->Remove( myPortTestRemove );
   Console::WriteLine( "Total number of ports after removing a port '{0}' is : {1}", myPortTestRemove->Name, myService->Ports->Count );

   // Create the WSDL file.
   myPortCollection->Insert( 0, myPortTestRemove );
   myServiceDescription->Write( "MathServiceItemNew_cs.wsdl" );
Service* myService;
PortCollection* myPortCollection;

ServiceDescription* myServiceDescription =
   ServiceDescription::Read(S"MathServiceItem_cs.wsdl");

Console::WriteLine(S"Total number of services : {0}", __box(myServiceDescription->Services->Count));

for(int i=0; i < myServiceDescription->Services->Count; ++i)
{
   myService = myServiceDescription->Services->Item[i];
   Console::WriteLine(S"Name : {0}", myService->Name);

   myPortCollection = myService->Ports;

   // Create an array of ports.
   Console::WriteLine(S"\nPort collection :");
   for(int i1=0 ; i1 < myService->Ports->Count ; ++i1)
   {
      Console::WriteLine(S"Port[{0}] : {1}", __box(i1), myPortCollection->Item[i1]->Name);
   }

   String* strPort = myPortCollection->Item[0]->Name;
   Port* myPort = myPortCollection->Item[strPort];
   Console::WriteLine(S"\nIndex of Port[{0}] : {1}", strPort, __box(myPortCollection->IndexOf(myPort)));


   Port* myPortTestRemove = myPortCollection->Item[0];

   Console::WriteLine(S"\nTotal number of ports before removing a port '{0}' is : {1}", myPortTestRemove->Name, __box(myService->Ports->Count));

   myPortCollection->Remove(myPortTestRemove);

   Console::WriteLine(S"Total number of ports after removing a port '{0}' is : {1}", myPortTestRemove->Name, __box(myService->Ports->Count));

   // Create the WSDL file.
   myPortCollection->Insert(0, myPortTestRemove);
   myServiceDescription->Write(S"MathServiceItemNew_cs.wsdl");

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: