public Task <string> DownloadAsync(CookieAwareWebClient client, FlexibleLoaderGetPreferredDestinationCallback getPreferredDestination, FlexibleLoaderReportDestinationCallback reportDestination, Func <bool> checkIfPaused, IProgress <long> progress, CancellationToken cancellation) { return(_innerLoader.DownloadAsync(client, getPreferredDestination, reportDestination, checkIfPaused, progress, cancellation)); }
public override Task DownloadAsync(WebClient client, string destination, CancellationToken cancellation) { return(_innerLoader.DownloadAsync(client, destination, cancellation)); }
public Task DownloadAsync(CookieAwareWebClient client, string destination, IProgress <double> progress, CancellationToken cancellation) { return(_innerLoader.DownloadAsync(client, destination, progress, cancellation)); }