public static void RemoveCache(this HttpContextBase context, CachingKey keyName)
 {
     context.SetCacheValue(keyName.ToString(), null);
 }
 public static Object GetCacheValue(this HttpContextBase context, CachingKey keyName)
 {
     return(context.GetCacheValue(keyName.ToString()));
 }
 public static void SetCacheValue(this HttpContextBase context, CachingKey keyName, Object value)
 {
     context.SetCacheValue(keyName.ToString(), value);
 }