How can I use HttpWebRequest (.NET, C#) asynchronously?
|
|
Use
The callback function is called when the asynchronous operation is complete. You need to at least call |
|||||||||||
|
|
Considering the answer:
You could send the request pointer or any other object like this:
Greetings |
|||
|
|
Everyone so far has been wrong, because
So to do this right:
You can then do what you need to with the response. For example:
|
|||||||
|
|
|||
|
|
|
I ended up using BackgroundWorker, it is definitely asynchronous unlike some of the above solutions, it handles returning to the GUI thread for you, and it is very easy to understand. It is also very easy to handle exceptions, as they end up in the RunWorkerCompleted method, but make sure you read this: Unhandled exceptions in BackgroundWorker I used WebClient but obviously you could use HttpWebRequest.GetResponse if you wanted.
|
|||
|
|
