コード例 #1
0
 public static void RemoveCache(this HttpContextBase context, CachingKey keyName)
 {
     context.SetCacheValue(keyName.ToString(), null);
 }
コード例 #2
0
 public static Object GetCacheValue(this HttpContextBase context, CachingKey keyName)
 {
     return(context.GetCacheValue(keyName.ToString()));
 }
コード例 #3
0
 public static void SetCacheValue(this HttpContextBase context, CachingKey keyName, Object value)
 {
     context.SetCacheValue(keyName.ToString(), value);
 }