Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

4
votes
4answers
1k views

Is WebClient.DownloadFileAsync really this slow?

I'm using the DownloadFileAsync method of WebClient to download some files from a server, and I can't help but notice that in my informal testing of my code within VS2010, it blocks for about 3 ...
3
votes
3answers
568 views

Why I can't have more than 5 WebClient.DownloadFileAsync running?

I'm trying to test another application by requesting many file downloads. So, I started 10 WebClient instances with following code, but seems I can have just 5 running at same time. class Program { ...
2
votes
1answer
74 views

WebClient DownloadFileAsync hangs

Good day. I'm working on file downloader class using DownloadFileAsync. In normal situations everything works fine. But when I'm downloading file and disable network connection, downloading progress ...
1
vote
1answer
36 views

Calculate download rate in ProgressChanged

So essentially i have a form that downloads a file, called file.jpg that rotates every hour or so for example, and i have a button that starts the download where it randomly downloads it an arbitrary ...
1
vote
1answer
208 views

C# download asynchronously with queue list

If you don't bother reading the whole text, you can skip to the two last dots :p This site has helped me a dozen of times already in the past, but now I really need help myself. The problem is as ...
0
votes
1answer
80 views

VB.net Webclient.DownloadFileAsync Not Downloading

I am trying to make a download manager for my program. But when I run this code it gives me the message box say "Download Started" but that is it. I do not get any file downloaded or progress bar ...
0
votes
3answers
154 views

Downloaded file using webclient.DownloadFileAsync has 0KB

I'm trying to download zend-framework (from http://framework.zend.com/releases/ZendFramework-1.11.11/ZendFramework-1.11.11.zip) using simply string url = ...
0
votes
1answer
93 views

VB - Using DownloadFileASync (WebClient) for multiple downloads

I'm trying to download multiple files based on what a user has selected on a form. I have multiple checkboxes in place, so If a user would select Checkboxes 1,3,4 I would want the webclient to ...
0
votes
1answer
115 views

WebClient DownloadFileAsync Illegal characters in path

I am using WebClient.DownloadFileAsync to download files asynchronously to my machine. Occasionally, I end up with URLs which has a double quote on it. For example, see this: ...
0
votes
0answers
29 views

WebClient not outputting details?

I have the following code: void StartDownload() { int i = 0; var bgWrk = new BackgroundWorker(); var client = new WebClient(); ...
0
votes
2answers
348 views

DownloadFileAsync: Multiple Files

I have run into some problems using C# WebClient DownloadFileAsync and hope that you would help me. Here's my scenario: I am downloading many files at the same time (http://example.com/abc/1.jpg, ...
0
votes
1answer
348 views

WebClient DownloadFileAsync File Exists

Is there a recommended method for using DownloadFileAsyc and determining if the file exists? It seems that the only way I can tell is on the DownloadCompleted event the error property has a 404 error ...
0
votes
4answers
1k views

Webclient downloadfileasync not working

I got a WPF application and I want to download a file. I'm using System.Net; and I have the following code: WebClient ww = new WebClient(); ww.DownloadFileAsync( new ...