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

ISyncCacheProvider<TResult>

public interface ISyncCacheProvider<TResult>
Defines methods for classes providing synchronous cache functionality for Polly CachePolicy<T>s.
namespace Polly.Caching { public interface ISyncCacheProvider<TResult> { (bool, TResult) TryGet(string key); void Put(string key, TResult value, Ttl ttl); } }