/// <summary>
 ///    Purges the cache of this instance of the ImageLoader, releasing
 ///    all the memory used by the images in the caches.
 /// </summary>
 public void PurgeCache()
 {
     cache.Purge();
 }
 /// <summary>
 ///    Purges the cache of this instance of the ImageLoader, releasing
 ///    all the memory used by the images in the caches.
 /// </summary>
 public void PurgeCache()
 {
     lock (cache)
         cache.Purge();
 }
示例#3
0
 public static void Purge()
 {
     cache.Purge();
 }