Top navigation, search delete
This commit is contained in:
@@ -9,22 +9,22 @@ namespace FileTime.Providers.LocalAdmin;
|
||||
//TODO: this should be a RemoteContentProvider if there will be one
|
||||
public class AdminContentProvider : RemoteContentProvider, IAdminContentProvider
|
||||
{
|
||||
public AdminContentProvider() : base("local", "localAdmin")
|
||||
public AdminContentProvider(ITimelessContentProvider timelessContentProvider) : base(timelessContentProvider, "local", "localAdmin")
|
||||
{
|
||||
}
|
||||
|
||||
public override Task<IItem> GetItemByNativePathAsync(NativePath nativePath, PointInTime pointInTime, bool forceResolve = false, AbsolutePathType forceResolvePathType = AbsolutePathType.Unknown, ItemInitializationSettings itemInitializationSettings = default)
|
||||
public override Task<IItem> GetItemByNativePathAsync(NativePath nativePath, PointInTime pointInTime, bool forceResolve = false, AbsolutePathType forceResolvePathType = AbsolutePathType.Unknown, ItemInitializationSettings itemInitializationSettings = default)
|
||||
=> throw new NotImplementedException();
|
||||
|
||||
public override NativePath GetNativePath(FullName fullName)
|
||||
public override NativePath GetNativePath(FullName fullName)
|
||||
=> throw new NotImplementedException();
|
||||
|
||||
public override FullName GetFullName(NativePath nativePath)
|
||||
public override FullName GetFullName(NativePath nativePath)
|
||||
=> throw new NotImplementedException();
|
||||
|
||||
public override Task<byte[]?> GetContentAsync(IElement element, int? maxLength = null, CancellationToken cancellationToken = default)
|
||||
public override Task<byte[]?> GetContentAsync(IElement element, int? maxLength = null, CancellationToken cancellationToken = default)
|
||||
=> throw new NotImplementedException();
|
||||
|
||||
public override bool CanHandlePath(NativePath path)
|
||||
public override bool CanHandlePath(NativePath path)
|
||||
=> throw new NotImplementedException();
|
||||
}
|
||||
Reference in New Issue
Block a user