IInputChannel.LocalAddress 屬性
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
取得輸入通道接收訊息的位址。
public:
property System::ServiceModel::EndpointAddress ^ LocalAddress { System::ServiceModel::EndpointAddress ^ get(); };
public System.ServiceModel.EndpointAddress LocalAddress { get; }
member this.LocalAddress : System.ServiceModel.EndpointAddress
Public ReadOnly Property LocalAddress As EndpointAddress
屬性值
EndpointAddress,輸入通道在上面接收訊息的位址。
範例
下列程式碼說明如何實作這個屬性:
public EndpointAddress LocalAddress
{
get
{
return this.InnerChannel.LocalAddress;
}
}
備註
如果這個輸入通道沒有獨立位址 (例如,它是用戶端初始化之 TCP 通道的輸入端),則這個屬性為 null
。
這個屬性可以由較高層通道使用於關聯目的。 例如,當較高層級的通道在 IDuplexChannel 的上方實作要求-回覆,此通道便可以使用 WS-Addressing ReplyTo 標頭的 LocalAddress 屬性。