EndpointAddress.NoneUri Özellik

Tanım

İletinin gönderilmemesi gereken bir uç noktanın adresi için kullanılan sürümden bağımsız bir URI alır.

public:
 static property Uri ^ NoneUri { Uri ^ get(); };
public static Uri NoneUri { get; }
member this.NoneUri : Uri
Public Shared ReadOnly Property NoneUri As Uri

Özellik Değeri

Uri

Uri değeriyle http://schemas.microsoft.com/2005/12/ServiceModel/Addressing/NoneA.

Örnekler

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;

Açıklamalar

Oluşturucuyu başlatmak için kullanılan URI'nin değeri ise NoneUri, IsNone olarak ayarlanır true.

Şunlara uygulanır