IOutputChannel.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 LocalAddress
{
get
{
return this.InnerChannel.LocalAddress;
}
}
注解
如果未指定 EndpointAddress,Via 将用作最终目标和物理地址。 如果已指定 Via,则此地址为消息将要发送至的实际物理地址,且消息必须通过此地址到达目标。