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

ISyncCacheProvider

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