Ejemplo n.º 1
0
 private static bool IsRedisException(FluentCacheException ex)
 {
     return(ex.InnerException is StackExchange.Redis.RedisException);
 }
Ejemplo n.º 2
0
 bool ICacheExceptionHandler.TryHandleCachingFailure(FluentCacheException cacheException)
 {
     return(HandleException != null && HandleException(cacheException));
 }