FlickrNet.Cache.FlushCache C# (CSharp) Méthode

FlushCache() static private méthode

static private FlushCache ( ) : void
Résultat void
        internal static void FlushCache()
        {
            Responses.Flush();
            Downloads.Flush();
        }

Same methods

Cache::FlushCache ( string url ) : void

Usage Example

Exemple #1
0
 /// <summary>
 /// Clears the cache for a particular URL.
 /// </summary>
 /// <param name="url">The URL to remove from the cache.</param>
 /// <remarks>
 /// The URL can either be an image URL for a downloaded picture, or
 /// a request URL (see <see cref="LastRequest"/> for getting the last URL).
 /// </remarks>
 public static void FlushCache(Uri url)
 {
     Cache.FlushCache(url);
 }
All Usage Examples Of FlickrNet.Cache::FlushCache