Is it possible (and if yes, how) to bypass DNS when doing a HTTP request ?
I want to hit directly a front-end with an HTTP request, without getting through NLB but w
I manage to do what I need setting the proxy to the IP address of the remote server :
request.Proxy = new WebProxy(ip.ToString());
It doesn't work in all scenarios, but it did in my case.