码迷,mamicode.com
首页 > Web开发 > 详细

配置.NET程序使用代理进行HTTP请求

时间:2014-08-22 10:48:35      阅读:295      评论:0      收藏:0      [点我收藏+]

标签:style   blog   http   color   使用   文件   ar   div   

方式一:代码方式

            var defaultProxy = new WebProxy();
            defaultProxy.Address = new Uri("http://proxy:8080");
            defaultProxy.Credentials = new NetworkCredential("xxxxx", "********");
            System.Net.WebRequest.DefaultWebProxy = defaultProxy;

方式二:配置文件

  <system.net>
    <defaultProxy useDefaultCredentials="True">
      <proxy proxyaddress="http://xaproxy:8080" bypassonlocal="True"/>
    </defaultProxy>
  </system.net>

方式三:配置文件+IE代理

 <system.net>
    <defaultProxy useDefaultCredentials="True">
      <proxy bypassonlocal="True" usesystemdefault="True"/>
    </defaultProxy>
  </system.net>

 

配置.NET程序使用代理进行HTTP请求,布布扣,bubuko.com

配置.NET程序使用代理进行HTTP请求

标签:style   blog   http   color   使用   文件   ar   div   

原文地址:http://www.cnblogs.com/zanxiaofeng/p/3928691.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!