在 C# 中,你能找到你的计算机正在使用什么代理服务器吗?
我注意到一些程序(例如 IE 和 Firefox)可以自动检测用于 Internet 流量的网络代理服务器。在 C# 中可以做同样的事情吗?有这方面的 API 吗?谢谢!
I've noticed some programs (such as IE and Firefox) can automatically detect a network proxy server to use for Internet traffic. Is it possible to do the same in C#? Are there APIs for this? Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可能正在寻找 WebRequest.DefaultWebProxy 或可能 WebRequest.GetSystemWebProxy。这应该能够获取 IE 检测到的任何内容。
另外,其他SO问题表明
HttpWebRequest
默认情况下将通过您的系统代理。You're probably looking for WebRequest.DefaultWebProxy or possibly WebRequest.GetSystemWebProxy. This should be able to pick up whatever IE detects.
Also, other SO questions indicate that
HttpWebRequest
will go through your system proxy by default.HttpWebRequest.Proxy
HttpWebRequest.Proxy