I have a large collection of DNS names that have already been resolved to IP addresses. With this collection I need to download HTML from them. It\'s a very large list and I nee
var ip = "93.184.216.119";
var host = "example.com";
var ipUri = new UriBuilder(Uri.UriSchemeHttp, ip).Uri;
var request = WebRequest.CreateHttp(ipUri);
request.Host = host;
using (var response = request.GetResponse())
{
// do something with response
}