<PackageReference Include="Polly" Version="7.0.3" />

ISyncCacheProvider

public interface ISyncCacheProvider
Defines methods for classes providing synchronous cache functionality for Polly CachePolicys.
namespace Polly.Caching { public interface ISyncCacheProvider { (bool, object) TryGet(string key); void Put(string key, object value, Ttl ttl); } }