You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
988 B
30 lines
988 B
using System; |
|
using System.IO; |
|
using System.Threading; |
|
using System.Threading.Tasks; |
|
using StabilityMatrix.Core.Models.Progress; |
|
using StabilityMatrix.Core.Services; |
|
|
|
namespace StabilityMatrix.Avalonia.DesignData; |
|
|
|
public class MockDownloadService : IDownloadService |
|
{ |
|
public Task DownloadToFileAsync(string downloadUrl, string downloadPath, IProgress<ProgressReport>? progress = null, |
|
string? httpClientName = null, CancellationToken cancellationToken = default) |
|
{ |
|
return Task.CompletedTask; |
|
} |
|
|
|
/// <inheritdoc /> |
|
public Task ResumeDownloadToFileAsync(string downloadUrl, string downloadPath, long existingFileSize, |
|
IProgress<ProgressReport>? progress = null, string? httpClientName = null, |
|
CancellationToken cancellationToken = default) |
|
{ |
|
return Task.CompletedTask; |
|
} |
|
|
|
public Task<Stream> GetImageStreamFromUrl(string url) |
|
{ |
|
return Task.FromResult(new MemoryStream(new byte[24]) as Stream); |
|
} |
|
}
|
|
|