WSDualHttpBinding.BypassProxyOnLocal 属性

定义

获取或设置一个值,该值指示是否跳过代理服务器而使用本地地址。

public:
 property bool BypassProxyOnLocal { bool get(); void set(bool value); };
public bool BypassProxyOnLocal { get; set; }
member this.BypassProxyOnLocal : bool with get, set
Public Property BypassProxyOnLocal As Boolean

属性值

如果跳过代理服务器而使用本地地址,则为 true;否则为 false。 默认值是 false

示例

下面的示例演示如何在配置文件中指定 wsDualHttpBinding 绑定。

下面的示例设置此属性以指示应对本地资源不使用代理。

WSDualHttpBinding BypassProxyOnLocalBinding =
    new WSDualHttpBinding();
BypassProxyOnLocalBinding.BypassProxyOnLocal = true;
Dim BypassProxyOnLocalBinding As New WSDualHttpBinding()
BypassProxyOnLocalBinding.BypassProxyOnLocal = True

也可以在配置文件中设置此属性的值。

注解

如果 Internet 资源具有本地地址,则该资源是本地资源。 本地地址是位于同一台计算机、本地 LAN 或 Intranet 上的地址,在语法上通过缺少句点 (.) 进行标识,如 URI http://webserver/http://localhost/中所示。

通过设置 BypassProxyOnLocal 属性可以确定在访问本地资源时,采用 WSDualHttpBinding 进行配置的终结点是否使用代理服务器。

如果 BypassProxyOnLocaltrue,则对本地 Internet 资源的请求不使用代理服务器。 当此属性设置为 localhost 时,如果希望客户端在与同一台计算机上的服务通信时使用代理,请使用主机名(而非 true)。

BypassProxyOnLocalfalse 时,所有 Internet 请求都通过代理服务器进行。

适用于