我构建了一个 Windows 8.1 通用应用程序,我必须下载一些文件。我使用DownloadOperation
来完成这项任务。问题有时在 Windows Phone 8.1 中,下载仅接收零字节。和 Windows 8.1 上的相同应用程序,总是正常下载文件。
贝娄是我的代码:
BackgroundDownloader downloader = new BackgroundDownloader();
file = await ApplicationData.Current.LocalFolder.CreateFileAsync(FileName, CreationCollisionOption.ReplaceExisting);
DownloadOperation download = downloader.CreateDownload(new Uri(URL), file);
var progress = new Progress<DownloadOperation>(ProgressCallback);
await download.StartAsync().AsTask(progress);
任何人都知道如何解决它?