[ 登录 ] - [ 注册 ] | 免费代理IP 数据无忧_无忧代理IP_DATA5U最新上线 | 代码示例DEMO | IP测试视频 | 用户协议

C#中如何设置使用代理IP发送网络请求?

作者:数据无忧   时间:2020-09-18 13:24:53
无忧代理IP推广返现活动


C#中实现用代理IP连接网络很简单,主要是通过修改本地注册表实现功能,代码如下

 
 // 设置代理IP,参数ip的格式为是 ip:port  
 private void setProxy(string ip) {
   Microsoft.Win32.RegistryKey rk = Microsoft.Win32.Registry.CurrentUser.OpenSubKey(@"Software/Microsoft/Windows/CurrentVersion/Internet Settings", true);
   //设置代理可用 
   rk.SetValue("ProxyEnable", 1);
   //设置代理IP和端口 
   rk.SetValue("ProxyServer", ip);
   rk.Close();
 }

 
 // 取消本地的代理IP
 private void disProxy() {
   Microsoft.Win32.RegistryKey rk = Microsoft.Win32.Registry.CurrentUser.OpenSubKey(@"Software/Microsoft/Windows/CurrentVersion/Internet Settings", true);
   //设置代理可用 
   rk.SetValue("ProxyEnable", 0);
   //设置代理IP和端口 
   rk.SetValue("ProxyServer", "");
   rk.Close();
 }


福利:现在通过开发者购买代理IP,购买后联系客服最高可获   返现20%   到你的支付宝(最低35元,最高1440元)


微信公众号
关注微信公众号