Add Proxy to a Http Web Request.
By [)ia6l0 iii
Use the Proxy property of the Http Web Request to specify proxy.
HttpWebRequest webRequest = (HttpWebRequest)WebRequest.Create(value);
webRequest.Proxy = new WebProxy(proxy);
Add Proxy to a Http Web Request. (1664 Views)