vote up 5 vote down star
1

How can I use HttpWebRequest (.NET, C#) asynchronously?

flag

3 Answers

vote up 9 vote down check

Use HttpWebRequest.BeginGetResponse()

    HttpWebRequest webRequest;

    void StartWebRequest()
    {
        webRequest.BeginGetResponse(new AsyncCallback(FinishWebRequest), null);
    }

    void FinishWebRequest(IAsyncResult result)
    {
        webRequest.EndGetResponse(result);
    }

The callback function is called when the asynchronous operation is complete. You need to at least call EndGetResponse() from this function.

link|flag
vote up 3 vote down

Check out this article on Developer Fusion: http://www.developerfusion.com/code/4654/asynchronous-httpwebrequest/

link|flag
vote up 1 vote down

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

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.