ServiceEndpoint.Name プロパティ

定義

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

public:
 property System::String ^ Name { System::String ^ get(); void set(System::String ^ value); };
public string Name { get; set; }
member this.Name : string with get, set
Public Property Name As String

プロパティ値

サービス エンドポイントの名前。 既定値は、バインディング名とコントラクトの説明の名前を連結した値です。 たとえば、Name +'_' + Name のようになります。

Uri baseAddress = new Uri("http://localhost:8001/Simple");
ServiceHost serviceHost = new ServiceHost(typeof(CalculatorService), baseAddress);

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

Console.WriteLine("Service endpoint {0} contains the following:", endpoint.Name);
Console.WriteLine("Binding: {0}", endpoint.Binding.ToString());
Console.WriteLine("Contract: {0}", endpoint.Contract.ToString());
Console.WriteLine("ListenUri: {0}", endpoint.ListenUri.ToString());
Console.WriteLine("ListenUriMode: {0}", endpoint.ListenUriMode.ToString());
Dim baseAddress As New Uri("http://localhost:8001/Simple")
Dim serviceHost As New ServiceHost(GetType(CalculatorService), baseAddress)

Dim endpoint As ServiceEndpoint = serviceHost.AddServiceEndpoint(GetType(ICalculator), New WSHttpBinding(), "CalculatorServiceObject")

Console.WriteLine("Service endpoint {0} contains the following:", endpoint.Name)
Console.WriteLine("Binding: {0}", endpoint.Binding.ToString())
Console.WriteLine("Contract: {0}", endpoint.Contract.ToString())
Console.WriteLine("ListenUri: {0}", endpoint.ListenUri.ToString())
Console.WriteLine("ListenUriMode: {0}", endpoint.ListenUriMode.ToString())

注釈

サービスには複数のエンドポイントが存在する場合があるため、エンドポイントの Name はサービスの名前とは異なります。 サービス名へのアクセスは、Name プロパティを使用して行います。

Note

サービスからアクセスすると、このプロパティはエンドポイント名="endpointName"> 構成要素によって<設定されます。 クライアントからアクセスする場合、このプロパティは null になります。 プロパティの getter が (再びクライアントから) 呼び出されると、getter はコントラクトとバインディングに基づいてこのプロパティに既定値を設定します。

適用対象