如何编写检测代理的 C# 代码
我需要能够检测导航到特定 URL 是否需要访问代理服务器。一些想法以及 C#(或 Java)代码将不胜感激。
感谢您抽出时间 数字TM
I need to be able to detect if navigating to a particular URL requires hitting a proxy server. Some ideas as well as c# (or Java) code would be appreciated.
Thanks for your time
DTM
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
WebRequest.DefaultWebProxy 使您可以访问代理,然后您可以将 URL 提供给
GetProxy()
并查看它返回的内容:Console.WriteLine(WebRequest.DefaultWebProxy.GetProxy(new Uri("http://stackoverflow.com") )));
WebRequest.DefaultWebProxy gives you access to the proxy, and then you can feed your URL to
GetProxy()
and see what it returns:Console.WriteLine(WebRequest.DefaultWebProxy.GetProxy(new Uri("http://stackoverflow.com")));