IRequestChannel.RemoteAddress 屬性
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
取得要求通道傳送訊息的目標遠端位址。
public:
property System::ServiceModel::EndpointAddress ^ RemoteAddress { System::ServiceModel::EndpointAddress ^ get(); };
public System.ServiceModel.EndpointAddress RemoteAddress { get; }
member this.RemoteAddress : System.ServiceModel.EndpointAddress
Public ReadOnly Property RemoteAddress As EndpointAddress
屬性值
要求通道傳送訊息的目標 EndpointAddress。
範例
下列程式碼會示範如何實作這個屬性。
public EndpointAddress RemoteAddress
{
get { return this.InnerChannel.RemoteAddress; }
}
備註
如果沒有指定 EndpointAddress,Via 會同時當做最終目的端和實體位址。 如果指定了 Via,這就是訊息傳送的實際實體目標位址,而且訊息必須透過這個位址,才能到達目的端。