示例#1
0
        public void Remove(string key)
        {
            _cache.Remove(key);
            ImageInformation imageInformation;

            _imageInformations.TryRemove(key, out imageInformation);
        }
示例#2
0
        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);
        }
示例#3
0
        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);
        }
示例#4
0
 public void Remove(string key)
 {
     _cache.Remove(key);
 }