EndpointAddress.NoneUri 屬性
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
取得不得對其傳送訊息之端點位址所使用的中性版本 URI。
public:
static property Uri ^ NoneUri { Uri ^ get(); };
public static Uri NoneUri { get; }
member this.NoneUri : Uri
Public Shared ReadOnly Property NoneUri As Uri
屬性值
Uri值為 的 http://schemas.microsoft.com/2005/12/ServiceModel/Addressing/None
。
範例
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.NoneUri;
備註
如果用於初始化建構函式之 URI 的值為 NoneUri,則 IsNone 會設定為 true
。