I need to do several HttpWebRequest requests in a single moment, but when I make the request several times will cost a lot of time. I plan on doing each request in a separate thread and then get all the returns and put it all together when all calls are completed is it possible?
Share
Absolutely.
Take a look at the msdn docs on HttpWebRequest.BeginGetResponse Method
I couldn’t write a better example than in the docs.