ServiceEndpoint.Address プロパティ

定義

サービス エンドポイントのエンドポイント アドレスを取得または設定します。

public:
 property System::ServiceModel::EndpointAddress ^ Address { System::ServiceModel::EndpointAddress ^ get(); void set(System::ServiceModel::EndpointAddress ^ value); };
public System.ServiceModel.EndpointAddress Address { get; set; }
member this.Address : System.ServiceModel.EndpointAddress with get, set
Public Property Address As EndpointAddress

プロパティ値

EndpointAddress

サービス エンドポイントの位置を指定する EndpointAddress

ServiceEndpoint を既存の ServiceHost に追加して、アドレス プロパティを表示する方法を次の例に示します。

ServiceEndpoint endpnt = serviceHost.AddServiceEndpoint(
    typeof(ICalculator),
    new WSHttpBinding(),
    "CalculatorServiceObject");

Console.WriteLine("Address: {0}", endpnt.Address);
Dim endpnt As ServiceEndpoint = serviceHost.AddServiceEndpoint(GetType(ICalculator), New WSHttpBinding(), "CalculatorServiceObject")

Console.WriteLine("Address: {0}", endpnt.Address)

注釈

サービス エンドポイントがリッスンする ListenUri の既定値は、Uri から返される EndpointAddressAddress によって提供されます。

適用対象