WSHttpBindingBase.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

属性值

Boolean

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

示例

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

    WSHttpBinding binding1 = new WSHttpBinding();

binding1.BypassProxyOnLocal =  true;
    Dim binding1 As New WSHttpBinding()

binding1.BypassProxyOnLocal = True

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

注解

如果 Internet 资源具有本地地址,则该资源是本地资源。 本地地址位于同一台计算机、本地 LAN 或 Intranet 上,并且由于 URI 和 URI 中http://webserver/``http://localhost/缺少句点 (.) ,以语法方式标识。

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

如果 BypassProxyOnLocaltrue,则对本地 Internet 资源的请求不使用代理服务器。 BypassProxyOnLocalfalse 时,所有 Internet 请求都通过代理服务器进行。

适用于