我正在尝试使用带有httpclient请求的代理。
string proxystring = "http://xx.xxx.xxx.xxx:3128/";
HttpClientHandler handler2 = new HttpClientHandler();
handler2.Proxy = new WebProxy(proxystring, false);
handler2.UseProxy = true;
HttpClient client2 = new HttpClient(handler2);
代理设置被忽略,无效。 有什么方法可以解决这个问题吗?