IRequestChannel.Via 属性

定义

获取发送请求的目标传输地址。

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

属性值

Uri

Uri,包含要将消息发送至的传输地址。

示例

下面的代码演示如何实现此属性。

public Uri Via
{
    get { return this.InnerChannel.Via; }
}

注解

如果未指定 EndpointAddressVia 将用作最终目标和物理地址。 如果已指定 Via,则此地址为消息将要发送至的实际物理地址,且消息必须通过此地址到达目标。

适用于