I am trying to multithread an httpwebrequest. It does not need to return a response, I just need to send them out as fast as possible. Currently I am using tasks but obviously that is not the most efficient way of doing things since that uses your system specs to determine threads rather than connection speed.
So I guess what I am trying to ask is what is the most effective way of using threads based on connection speed rather than the number of cores your PC has.
Thanks
You can use
BeginGetResponse()method which is anasyncmethod ofWebRequest.