How can I use HttpWebRequest (.NET, C#) asynchronously?
|
1
|
|
|
|
|
|
Use HttpWebRequest.BeginGetResponse()
The callback function is called when the asynchronous operation is complete. You need to at least call EndGetResponse() from this function. |
||
|
|
|
|
Check out this article on Developer Fusion: http://www.developerfusion.com/code/4654/asynchronous-httpwebrequest/ |
||
|
|
|
|
You can also see the following, for a pretty complete example of doing what Jason is asking: http://stuff.seans.com/2009/01/05/using-httpwebrequest-for-asynchronous-downloads/ Sean |
||
|
|
