I create 1,000 downloads using BackgroundDownloader.CreateDownload
, then I queue up 100 of them by doing DownloadOperation.Start
. If I watch the traffic in fiddler, only 5 of them at actually send out at once. When one finishes, another is sent out.
Is there a way to have more sent out concurrently?
Yes, there is a limit of 5 downloads at a time within Windows.Networking.BackgroundTransfer.
You can extend it to up to 6 downloads at a time if you mark all your downloads as High Priority, i.e.:
This could be a limitation of the server you are downloading from, not necessarily the code you are writing. With .htaccess rules the admin of the server could do something like this in order to limit concurrent connections: MaxClients < number-of-connections>