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

示例

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

BasicHttpBinding binding = new BasicHttpBinding();
binding.BypassProxyOnLocal = true;

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

<configuration>
  <system.serviceModel>

    <bindings>
      <basicHttpBinding>
        <binding name="Binding1" 
                 bypassProxyOnLocal="true">
          <security mode="None" />
        </binding>
      </basicHttpBinding>
    </bindings>
  </system.serviceModel>

</configuration>

注解

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

设置 BypassProxyOnLocal 属性可确定访问本地资源时是否使用 BasicHttpBinding 代理服务器配置的终结点。

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

当 BypassProxyOnLocal 为 false时,将通过代理服务器发出对非 localhost URI 的所有 Internet 请求。 无论 BypassProxyOnLocal 设置如何,对具有 localhost 的 URI 的请求都不会使用代理服务器。

适用于