Is there any way to throttle a HttpWebRequest? I can call GetResponse() but that will download the response at it’s own speed and I may want to limit the rate of download.
So far I can’t see anything that would let me?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
As Thomas Levesque said,
GetResponse()downloads the headers and the beginning and not the whole item like previously thought.This means that I can read in chunks and throttle as needed.