EndpointAddress.Uri プロパティ

定義

エンドポイントの URI を取得します。

public:
 property Uri ^ Uri { Uri ^ get(); };
public Uri Uri { get; }
[System.ComponentModel.TypeConverter(typeof(System.UriTypeConverter))]
public Uri Uri { get; }
member this.Uri : Uri
[<System.ComponentModel.TypeConverter(typeof(System.UriTypeConverter))>]
member this.Uri : Uri
Public ReadOnly Property Uri As Uri

プロパティ値

Uri

エンドポイントの Uri

属性

EndpointIdentity endpointIdentity =
    EndpointIdentity.CreateUpnIdentity(WindowsIdentity.GetCurrent().Name);
EndpointAddress endpointAddress = new EndpointAddress(
    new Uri
    ("http://localhost:8003/servicemodelsamples/service/incode/identity"),
    endpointIdentity, addressHeaders);

Uri nonUri = endpointAddress.Uri;

注釈

この URI は、メッセージの送信先を識別します。 エンドポイント アドレスの URI を設定するには、Uri を使用します。

適用対象