1. IE, Office, WinINet走的是同一种代理. 在IE选项中配置, 如下图. 其中的Automaticlly detect settings, 依靠的是Web Proxy Autodiscovery Protocol.

    Windows上三种proxy方式的总结

 

2. 一些Windows系统服务, Windows服务器端应用程序使用WinHTTP, 它们走的是通过proxycfg配置的代理, 详见什么是WinHTTP.

 

3. .NET应用程序使用的是.config文件中配置的代理, 比如web.config, 或者MyApp.config.

     举例

<configuration>
  <system.net>
    <defaultProxy>
      <bypasslist>
        <add address="[a-z]+\.contoso\.com$" />
        <add address="192\.168\.\d{1,3}\.\d{1,3}" />
      </bypasslist>
    </defaultProxy>
  </system.net>
</configuration>

相关文章:

  • 2021-08-09
  • 2022-12-23
  • 2023-04-03
  • 2021-10-24
  • 2022-12-23
  • 2021-11-07
  • 2022-02-21
猜你喜欢
  • 2021-11-12
  • 2021-11-20
  • 2021-12-31
  • 2022-01-06
  • 2021-06-30
  • 2021-12-26
相关资源
相似解决方案