示例#1
0
 public static void Insert(string key, object obj, int seconds)
 {
     HiCache.Insert(key, obj, null, seconds);
 }
示例#2
0
 public static void Insert(string key, object obj, int seconds, CacheItemPriority priority)
 {
     HiCache.Insert(key, obj, null, seconds, priority);
 }
示例#3
0
 public static void Insert(string key, object obj)
 {
     HiCache.Insert(key, obj, null, 1);
 }
示例#4
0
 public static void Insert(string key, object obj, CacheDependency dep)
 {
     HiCache.Insert(key, obj, dep, 8640);
 }
示例#5
0
 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);
 }