Clearing System.Web.Cache

Posted by Han Cheng on Geeks with Blogs See other posts from Geeks with Blogs or by Han Cheng
Published on Wed, 07 Apr 2010 12:45:02 GMT Indexed on 2010/04/07 14:03 UTC
Read the original article Hit count: 396

Filed under:

   1:  System.Collections.IDictionaryEnumerator enumerator = context.Cache.GetEnumerator();
   2:  while (enumerator.MoveNext())
   3:  {
   4:      context.Cache.Remove(enumerator.Key.ToString());
   5:  }

© Geeks with Blogs or respective owner