|
|
|
start date: Sat, 4 Aug 2007 13:54:17 +0300,
posted on: microsoft.public.dotnet.framework
back
| Thread Index |
|
1
Yehia A.Salam
|
|
2
Brainman
|
WebClient DownloadFileAsync
Hello,
I'm trying to download several files in a list one after another, I used
DownloadFileAsyn for asynchronous download, the problem is I always get this
error message "Web Client does not support concurrent I/O operations"
however there is nothing concurrent in what I do, as I wait for one download
to complete and in the DownloadFileCompleted WebClient event I start a new
download using the DownloadFileAsync.
Thanks
Yehia A.Salam
Date:Sat, 4 Aug 2007 13:54:17 +0300
Author:
|
RE: WebClient DownloadFileAsync
You have to add a unique object to each async call.
"Yehia A.Salam" wrote:
> Hello,
>
> I'm trying to download several files in a list one after another, I used
> DownloadFileAsyn for asynchronous download, the problem is I always get this
> error message "Web Client does not support concurrent I/O operations"
> however there is nothing concurrent in what I do, as I wait for one download
> to complete and in the DownloadFileCompleted WebClient event I start a new
> download using the DownloadFileAsync.
>
> Thanks
> Yehia A.Salam
>
>
Date:Fri, 17 Aug 2007 11:14:00 -0700
Author:
|
|
|