public void Remove(string key) { _cache.Remove(key); ImageInformation imageInformation; _imageInformations.TryRemove(key, out imageInformation); }
public void Remove(string key) { _logger.Debug(string.Format("Called remove from memory cache for '{0}'", key)); _cache.Remove(key); ImageInformation imageInformation; _imageInformations.TryRemove(key, out imageInformation); }
public void Remove(string key) { if (ImageService.Instance.Config.VerboseMemoryCacheLogging) { _logger.Debug(string.Format("Called remove from memory cache for '{0}'", key)); } _cache.Remove(key); ImageInformation imageInformation; _imageInformations.TryRemove(key, out imageInformation); }
public void Remove(string key) { _cache.Remove(key); }