I\'m troubleshooting a bug with a service I call through .NET\'s HttpClient, trying to route the request through a local proxy (Fiddler), but my proxy settings seem to not b
This code worked for me:
var httpClientHandler = new HttpClientHandler { Proxy = new WebProxy("http://localhost:8888", false), UseProxy = true }
Note that I am not supplying an empty array to my WebProxy constructor. Perhaps that's the problem?
WebProxy