This documentation is archived and is not being maintained.
PortCollection Class
Visual Studio 2008
Represents a collection of instances of the Port class. This class cannot be inherited.
Assembly: System.Web.Services (in System.Web.Services.dll)
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");
System::Object
System.Collections::CollectionBase
System.Web.Services.Description::ServiceDescriptionBaseCollection
System.Web.Services.Description::PortCollection
System.Collections::CollectionBase
System.Web.Services.Description::ServiceDescriptionBaseCollection
System.Web.Services.Description::PortCollection
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.
Show: