ICacheKeyStrategy
Defines how a  CachePolicy should get a string cache key from an execution  Context.
            
                using System.Runtime.CompilerServices;
namespace Polly.Caching
{
    [System.Runtime.CompilerServices.NullableContext(1)]
    public interface ICacheKeyStrategy
    {
        string GetCacheKey(Context context);
    }
}