HttpWebRequest request;
HttpWebResponse response;
StreamReader reader;
//add the proxy to the request
WebProxy proxy = new WebProxy("10.10.10.21", 8080)
{
BypassProxyOnLocal = true
};