Exemplo n.º 1
0
 public bool Exists(string key)
 {
     _logger.LogStoreCall("Exists", key);
     try
     {
         return(_store.Exists(key));
     }
     catch (Exception ex)
     {
         _logger.LogError(ex);
         throw;
     }
 }
Exemplo n.º 2
0
 public bool Exists(string key)
 {
     return(_store.Exists(_GetTransformedKey(key)));
 }
 public bool Exists(string key)
 {
     return(_store.Exists(key));
 }