locked
BackgroundDownloader.getCurrentDownloadsAsync also gets called for newly started downloads RRS feed

  • Question

  • When I call getCurrentDownloadAsync and later in the program initiate a new download using

                    

    var downloader = new Windows.Networking.BackgroundTransfer.BackgroundDownloader();
    var operation = downloader.createDownload(uri, newFile);

    var promise = operation.startAsync();

    then my handler of getCurrentDownloadAsync is called again with the newly started download. Is that intentional?

    Tuesday, October 2, 2012 12:58 PM