SDownload.Framework.Streams.BaseStream.DownloadExtra C# (CSharp) Méthode

DownloadExtra() private static méthode

Asynchronous method for downloading an item that does not track progress
private static DownloadExtra ( DownloadItem item ) : System.Threading.Tasks.Task
item DownloadItem The item to download
Résultat System.Threading.Tasks.Task
        private static async Task DownloadExtra(DownloadItem item)
        {
            await new WebClient().DownloadFileTaskAsync(item.Uri, item.AbsolutePath);
        }