示例#1
0
 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));
 }
示例#2
0
 public override Task DownloadAsync(WebClient client, string destination, CancellationToken cancellation)
 {
     return(_innerLoader.DownloadAsync(client, destination, cancellation));
 }
示例#3
0
 public Task DownloadAsync(CookieAwareWebClient client, string destination, IProgress <double> progress, CancellationToken cancellation)
 {
     return(_innerLoader.DownloadAsync(client, destination, progress, cancellation));
 }