It is pretty self-explanatory
Means just saying webrequest.Create(uri) it does nothingCode:// Create an HttpWebRequest using WebRequest.Create (see .NET docs)! HttpWebRequest request = (HttpWebRequest)WebRequest.Create(uri); // Execute the request and obtain the response stream HttpWebResponse response = (HttpWebResponse)request.GetResponse(); Stream responseStream = response.GetResponseStream();
Thanks for the reply it is much appreciated!






Reply With Quote