What on local PC can affect ServicePoint.Address of the HttpWebRequest? After I create a HTTP request by providing a URI:
HttpWebRequest request = (HttpWebRequest) WebRequest.Create(url);
request.ServicePoint.Address having a different value.
What on local PC can affect ServicePoint.Address of the HttpWebRequest? After I create a HTTP request by providing a URI:
HttpWebRequest request = (HttpWebRequest) WebRequest.Create(url);
request.ServicePoint.Address having a different value.
http request can be redirected by local Proxy settings. To disable it in Windows 10 go to the Settings->Network & Internet->Proxy->Make Use a proxy server = Off, in case if you working on intranet you would need to be sure that Use setup script is Off as well.