Hey all,
I'm trying to upload files to a server but I would like to limit the maximum upload speed that it sends the files at. the reasoning is some people who will use this program have awful upload speeds and when uploading the files, it really lags them. so i would like to limit the maximum upload speed if at all possible. here is the code that is currently doing the uploading. yes i know it is very basic, its more dynamic in the code but this is the basics of it. if anyone could point me in the right direction, i would greatly appreciate it.


WebClient myWebClient = new WebClient();
myWebClient.UploadFile(""http://myurl", "POST", "C:\\windows\\test.jpg");