Пример #1
0
 private static bool IsRedisException(FluentCacheException ex)
 {
     return(ex.InnerException is StackExchange.Redis.RedisException);
 }
Пример #2
0
 bool ICacheExceptionHandler.TryHandleCachingFailure(FluentCacheException cacheException)
 {
     return(HandleException != null && HandleException(cacheException));
 }