Refresh not supported

This commit is contained in:
ClemensFischer 2025-02-28 15:40:41 +01:00
parent 057fd82feb
commit abd7567ffc
2 changed files with 27 additions and 27 deletions

View file

@ -138,11 +138,12 @@ namespace MapControl.Caching
public void Refresh(string key)
{
throw new NotSupportedException();
}
public Task RefreshAsync(string key, CancellationToken token = default)
{
return Task.CompletedTask;
throw new NotSupportedException();
}
public void Remove(string key)