PurgeCache() public method

Purges the cache of this instance of the ImageLoader, releasing all the memory used by the images in the caches.
public PurgeCache ( ) : void
return void
 /// <summary>
 ///    Purges the contents of the DefaultLoader
 /// </summary>
 public static void Purge()
 {
     if (DefaultLoader != null)
     {
         DefaultLoader.PurgeCache();
     }
 }