I want to do something like this
{
HttpWebRequest WebRequestObject = (HttpWebRequest)HttpWebRequest.Create("http://google.com");
WebRequestObject.KeepAlive = true;
WebRequestObject.Something("http://www.google.com/intl/en_ALL/images/logo.gif");
}
How to keep a connection alive and navigate to multiple URLs using the same live connection?
user34537
source
share