Description
I am not able to authenticate to a proxy using given credentials.
What am I missing?
Thanks.
Reproduction Steps
using var httpClientHandler = new HttpClientHandler
{
Proxy = new WebProxy(address, true, new string[] {}, new NetworkCredential(someuser, somepass)),
UseProxy = true,
ServerCertificateCustomValidationCallback = (_, _, _, _) => true,
};
using var client = new HttpClient(httpClientHandler);
Expected behavior
I would like to perform gets/posts through the given proxy.
Actual behavior
authentication fails
Regression?
No response
Known Workarounds
No response
Configuration
No response
Other information
No response
Description
I am not able to authenticate to a proxy using given credentials.
What am I missing?
Thanks.
Reproduction Steps
Expected behavior
I would like to perform gets/posts through the given proxy.
Actual behavior
authentication fails
Regression?
No response
Known Workarounds
No response
Configuration
No response
Other information
No response