EndpointAddress.IsNone プロパティ

定義

エンドポイントの URI が NoneUri であるかどうかを示す値を取得します。

public:
 property bool IsNone { bool get(); };
public bool IsNone { get; }
member this.IsNone : bool
Public ReadOnly Property IsNone As Boolean

プロパティ値

エンドポイントの URI が true の場合は NoneUri。それ以外の場合は false

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

 bool isNone = endpointAddress.IsNone;

注釈

NoneUri から EndpointAddress または EndpointAddress10 のいずれかに手動で URI をコピーする場合、このメソッドを使用して EndpointAddressAugust2004 をチェックします。 この操作を行う必要があるのは、EndpointAddress10EndpointAddressAugust2004 には両方とも特殊な非 URI 値があるためです。 コピーされる URI が none の場合は、この特殊な値を使用する必要があります。

適用対象