IOutputChannel.Via 属性

定义

获取 URI,该 URI 包含输出通道发送消息的目标传输地址。

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

属性值

Uri

Uri,包含输出通道发送消息的目标传输地址。

示例

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

public IAsyncResult BeginReceiveRequest(AsyncCallback callback, object state)
{
    return BeginReceiveRequest(DefaultReceiveTimeout, callback, state);
}

注解

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

适用于