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