This documentation is archived and is not being maintained.

PortCollection::Item Property (String)

Gets a Port specified by its name.

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

public:
property Port^ Item[String^ name] {
	Port^ get (String^ name);
}

Parameters

name
Type: System::String

The name of the Port returned.

Property Value

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

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 ) );
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)));

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: