Bloom.ImageProcessing.LowResImageCache.Dispose C# (CSharp) Method

Dispose() public method

public Dispose ( ) : void
return void
        public void Dispose()
        {
            if (_paths == null)
                return;

            TryToDeleteCachedImages();

            //NB: this turns out to be dangerous. Without it, we still delete all we can, leave some files around
            //each time, and then deleting them on the next run
            //			_cacheFolder.Dispose();

            GC.SuppressFinalize(this);
        }