Port クラス

XML Web サービスに格納されている個別のエンドポイントを定義します。このクラスは継承できません。

この型のすべてのメンバの一覧については、Port メンバ を参照してください。

System.Object
   System.Web.Services.Description.DocumentableItem
      System.Web.Services.Description.Port

NotInheritable Public Class Port
   Inherits DocumentableItem
[C#]
public sealed class Port : DocumentableItem
[C++]
public __gc __sealed class Port : public DocumentableItem
[JScript]
public class Port extends DocumentableItem

スレッドセーフ

この型の public static (Visual Basicでは Shared) のすべてのメンバは、マルチスレッド操作で安全に使用できます。インスタンスのメンバの場合は、スレッドセーフであるとは限りません。

解説

このクラスは、 Binding のための単一のアドレス (URI) を指定します。このバインディングによって、特定の PortType の操作とメッセージに対するメッセージ形式とプロトコルの詳細を定義します。 Binding プロパティは、指定した Port のこれらの値を取得または設定します。

このクラスは、 <service> 要素によって囲まれた Web サービス記述言語 (WSDL: Web Services Description Language) <port> 要素に対応します。WSDL の詳細については、http://www.w3.org/TR/wsdl/ の仕様を参照してください。

使用例

 

         ' Create a Port.
         Dim postPort As New Port()
         postPort.Name = "PortServiceHttpPost"
         postPort.Binding = New XmlQualifiedName("s0:PortServiceHttpPost")


         ' Create an HttpAddressBinding.
         Dim postAddressBinding As New HttpAddressBinding()
         postAddressBinding.Location = _
            "https://localhost/PortClass/PortService.vb.asmx"

         ' Add the HttpAddressBinding to the Port.
         postPort.Extensions.Add(postAddressBinding)

         ' Get the Service of the postPort.
         Dim myService As Service = postPort.Service

         ' Print the service name for the port.
         Console.WriteLine("This is the service name of the postPort:*" & _
            myDescription.Services(0).Ports(0).Service.Name & "*")

         ' Add the Port to the PortCollection of the ServiceDescription.
         myDescription.Services(0).Ports.Add(postPort)


[C#] 
// Create a Port.
Port postPort = new Port();
postPort.Name = "PortServiceHttpPost";
postPort.Binding = new XmlQualifiedName("s0:PortServiceHttpPost");

// Create an HttpAddressBinding.
HttpAddressBinding postAddressBinding = new HttpAddressBinding();
postAddressBinding.Location = 
   "https://localhost/PortClass/PortService_cs.asmx";

// Add the HttpAddressBinding to the Port.
postPort.Extensions.Add(postAddressBinding);

// Get the Service of the postPort.
Service myService = postPort.Service;

// Print the service name for the port.
Console.WriteLine("This is the service name of the postPort:*" +
   myDescription.Services[0].Ports[0].Service.Name + "*");

// Add the Port to the PortCollection of the ServiceDescription.
myDescription.Services[0].Ports.Add(postPort);

[C++] 
// Create a Port.
Port* postPort = new Port();
postPort->Name = S"PortServiceHttpPost";
postPort->Binding = new XmlQualifiedName(S"s0:PortServiceHttpPost");

// Create an HttpAddressBinding.
HttpAddressBinding* postAddressBinding = new HttpAddressBinding();
postAddressBinding->Location = 
   S"https://localhost/PortClass/PortService_cs.asmx";

// Add the HttpAddressBinding to the Port.
postPort->Extensions->Add(postAddressBinding);

// Get the Service of the postPort.
Service* myService = postPort->Service;

// Print the service name for the port.
Console::WriteLine(S"This is the service name of the postPort:*{0}*",
   myDescription->Services->Item[0]->Ports->Item[0]->Service->Name);

// Add the Port to the PortCollection of the ServiceDescription.
myDescription->Services->Item[0]->Ports->Add(postPort);

[JScript] JScript のサンプルはありません。Visual Basic、C#、および C++ のサンプルを表示するには、このページの左上隅にある言語のフィルタ ボタン 言語のフィルタ をクリックします。

必要条件

名前空間: System.Web.Services.Description

プラットフォーム: Windows 98, Windows NT 4.0, Windows Millennium Edition, Windows 2000, Windows XP Home Edition, Windows XP Professional, Windows Server 2003 ファミリ

アセンブリ: System.Web.Services (System.Web.Services.dll 内)

参照

Port メンバ | System.Web.Services.Description 名前空間 | Service