I have an app that making API requests to the last.fm website using the backgroundWorker. Initially I don\'t know how many request I\'m gonna need to make. The response cont
You can do Async Web Request as well, using BeginGetResponse
HttpWebRequest webRequest; webRequest.BeginGetResponse(new AsyncCallback(callbackfunc), null); void callbackfunc(IAsyncResult response) { webRequest.EndGetResponse(response); }