标签: c# proxy detect
我需要能够检测导航到特定URL是否需要命中代理服务器。一些想法以及c#(或Java)代码将不胜感激。
感谢您的时间 DTM
答案 0 :(得分:1)
WebRequest.DefaultWebProxy可让您访问代理,然后您可以将您的网址提供给GetProxy()并查看其返回的内容:
GetProxy()
Console.WriteLine(WebRequest.DefaultWebProxy.GetProxy(new Uri("http://stackoverflow.com")));