C#對IE使用Proxy(代理)

來源:互聯網
上載者:User
C#如何?IE代理設定?IE的代理設定存放在註冊表中,位置為:HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Internet Settings
ProxyEnable  代理是否啟用,
ProxyServer  Proxy 伺服器
操作註冊表的類是:Microsoft.Win32.RegistryKey public static void ProxySetting(WebRequest request)
 {
              WebProxy proxy = WebProxy.GetDefaultProxy();//擷取IE預設設定
              //如果預設設定為空白,則有可能是根本不需要Proxy 伺服器,如果此時設定檔中也未配置則認為不需Proxy
              if (proxy.Address == null)
                  proxy.Address = new Uri("××××××:8080");//按設定檔建立Proxy 地置
              if (proxy.Address != null)//如果地址為空白,則不需要Proxy 伺服器
              {
                  proxy.Credentials = new NetworkCredential("test123","123456");//從配置封裝參數中建立
                  request.Proxy = proxy;//賦予 request.Proxy 
              }
  }
相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.