Exemplo n.º 1
0
 public static void Insert(string key, object obj, int seconds)
 {
     HiCache.Insert(key, obj, null, seconds);
 }
Exemplo n.º 2
0
 public static void Insert(string key, object obj, int seconds, CacheItemPriority priority)
 {
     HiCache.Insert(key, obj, null, seconds, priority);
 }
Exemplo n.º 3
0
 public static void Insert(string key, object obj)
 {
     HiCache.Insert(key, obj, null, 1);
 }
Exemplo n.º 4
0
 public static void Insert(string key, object obj, CacheDependency dep)
 {
     HiCache.Insert(key, obj, dep, 8640);
 }
Exemplo n.º 5
0
 public static void Insert(string key, object obj, CacheDependency dep, int seconds)
 {
     HiCache.Insert(key, obj, dep, seconds, CacheItemPriority.Normal);
 }
Exemplo n.º 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);
 }
Exemplo n.º 7
0
 public static void Insert(string string_0, object object_0, int seconds)
 {
     HiCache.Insert(string_0, object_0, null, seconds);
 }
Exemplo n.º 8
0
 public static void Insert(string string_0, object object_0, CacheDependency cacheDependency_0)
 {
     HiCache.Insert(string_0, object_0, cacheDependency_0, 8640);
 }
Exemplo n.º 9
0
 public static void Insert(string string_0, object object_0)
 {
     HiCache.Insert(string_0, object_0, null, 1);
 }