StreamCopyCommandHandler, Async rename

This commit is contained in:
2022-02-16 00:12:09 +01:00
parent 89d891918c
commit f809f0a640
41 changed files with 529 additions and 182 deletions

View File

@@ -1,3 +1,5 @@
using FileTime.Core.Providers;
namespace FileTime.Core.Models
{
public interface IElement : IItem
@@ -6,5 +8,8 @@ namespace FileTime.Core.Models
string GetPrimaryAttributeText();
Task<string> GetContent(CancellationToken token = default);
Task<long> GetElementSize(CancellationToken token = default);
Task<IContentReader> GetContentReaderAsync();
Task<IContentWriter> GetContentWriterAsync();
}
}