Browse compressed file content

This commit is contained in:
2023-09-05 00:13:24 +02:00
parent 3a29991948
commit b85c19407e
19 changed files with 406 additions and 14 deletions

View File

@@ -6,12 +6,12 @@ namespace FileTime.Core.ContentAccess;
public interface ISubContentProvider
{
Task<bool> CanHandleAsync(IElement parentElement);
Task<IItem?> GetItemByFullNameAsync(
IElement parentElement,
FullName itemPath,
PointInTime pointInTime,
AbsolutePathType forceResolvePathType = AbsolutePathType.Unknown,
ItemInitializationSettings itemInitializationSettings = default);
Task<bool> CanHandleAsync(IElement parentElement);
}