简体   繁体   English

使用WebBrowser和WebRequest的代理,如何包含用户名和密码?

[英]Using proxy with WebBrowser and WebRequest, how to include username and password?

I got this from Load web browser with web response . 我从Load web浏览器获得了这个带有Web响应的信息 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;

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM