本文介绍了在 WebBrowser 和 WebRequest 中使用代理,如何包含用户名和密码?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我从加载带有网络响应的网络浏览器.我想知道如何使用此代码来使用需要用户名和密码才能工作的代理.
I got this from Load web browser with web response. and am wondering how I can use this code to use proxies that need a username and password to be able to work.
HttpWebRequest webRequest = (HttpWebRequest)WebRequest.Create("http://example.com");
webRequest.Proxy = new WebProxy(host, port);
HttpWebResponse response = (HttpWebResponse)webRequest.GetResponse();
Stream receiveStream = response.GetResponseStream();
WebBrowser webBrowser = new WebBrowser();
webBrowser.DocumentStream = receiveStream;
推荐答案
var webProxy = new WebProxy(host,port);
webProxy.Credentials = new NetworkCredential("username", "password", "domain");
var webRequest = (HttpWebRequest)WebRequest.Create("http://example.com");
webRequest.Proxy = webProxy;
这篇关于在 WebBrowser 和 WebRequest 中使用代理,如何包含用户名和密码?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!