HttpWebRequest.BeginGetResponse() does not return the second time
- by evilfred
Hi,
I make one HttpWebRequest and call GetResponse() on it to get a synchronous response.
Then after processing that response, I make a new HttpWebRequest and call BeginGetResponse() on it. Since BeginGetResponse() is an asynchronous call I expect it to return right away, but it doesn't! Why not?
Here is some stripped down sample code:
…