/// <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();
 }
예제 #2
0
 /// <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();
 }