SDownload.Framework.Streams.BaseStream.DownloadExtra C# (CSharp) Method

DownloadExtra() private static method

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
return System.Threading.Tasks.Task
        private static async Task DownloadExtra(DownloadItem item)
        {
            await new WebClient().DownloadFileTaskAsync(item.Uri, item.AbsolutePath);
        }