예제 #1
0
파일: HiCache.cs 프로젝트: llenroc/kangaroo
 public static void Insert(string key, object obj, int seconds)
 {
     HiCache.Insert(key, obj, null, seconds);
 }
예제 #2
0
파일: HiCache.cs 프로젝트: llenroc/kangaroo
 public static void Insert(string key, object obj, int seconds, CacheItemPriority priority)
 {
     HiCache.Insert(key, obj, null, seconds, priority);
 }
예제 #3
0
파일: HiCache.cs 프로젝트: llenroc/kangaroo
 public static void Insert(string key, object obj)
 {
     HiCache.Insert(key, obj, null, 1);
 }
예제 #4
0
파일: HiCache.cs 프로젝트: llenroc/kangaroo
 public static void Insert(string key, object obj, CacheDependency dep)
 {
     HiCache.Insert(key, obj, dep, 8640);
 }
예제 #5
0
파일: HiCache.cs 프로젝트: llenroc/kangaroo
 public static void Insert(string key, object obj, CacheDependency dep, int seconds)
 {
     HiCache.Insert(key, obj, dep, seconds, CacheItemPriority.Normal);
 }
예제 #6
0
 public static void Insert(string string_0, object object_0, CacheDependency cacheDependency_0, int seconds)
 {
     HiCache.Insert(string_0, object_0, cacheDependency_0, seconds, CacheItemPriority.Normal);
 }
예제 #7
0
 public static void Insert(string string_0, object object_0, int seconds)
 {
     HiCache.Insert(string_0, object_0, null, seconds);
 }
예제 #8
0
 public static void Insert(string string_0, object object_0, CacheDependency cacheDependency_0)
 {
     HiCache.Insert(string_0, object_0, cacheDependency_0, 8640);
 }
예제 #9
0
 public static void Insert(string string_0, object object_0)
 {
     HiCache.Insert(string_0, object_0, null, 1);
 }