public static void Insert(string key, object obj, CacheDependency dep, int seconds) { HiCache.Insert(key, obj, dep, seconds, CacheItemPriority.Normal); }
public static void Insert(string key, object obj, int seconds, CacheItemPriority priority) { HiCache.Insert(key, obj, null, seconds, priority); }
public static void Insert(string key, object obj, CacheDependency dep) { HiCache.Insert(key, obj, dep, 8640); }
public static void Insert(string key, object obj, int seconds) { HiCache.Insert(key, obj, null, seconds); }
public static void Insert(string key, object obj) { HiCache.Insert(key, obj, null, 1); }