1
我正在構建一個應用程序,需要下載mp3文件和存儲在應用程序文件夾中。我的下載按鈕正在運行下面的結構。在windows phone 8.1下載歌曲文件C#
Uri source = new Uri(url);
string destination = "\\mp3";
StorageFile destinationFile = await KnownFolders.PicturesLibrary.CreateFileAsync(
destination, CreationCollisionOption.GenerateUniqueName);
BackgroundDownloader downloader = new BackgroundDownloader();
DownloadOperation download = downloader.CreateDownload(source, destinationFile);
現在我停在這裏,我怎麼能繼續下載文件,我需要什麼樣的方法或類繼續。我搜索了「MediaLibraryExtensions.SaveSong方法」,但這是爲Windows Phone 8和7.1。