public static void Insert(string key, object obj, int seconds, CacheItemPriority priority) { TCache.Insert(key, obj, seconds, priority); }
public static void Insert(string key, object obj, int seconds) { TCache.Insert(key, obj, seconds); }
public static void Insert(string key, object obj, CacheDependency dep) { TCache.Insert(key, obj, dep); }
/// <summary> /// Insert the current "obj" into the cache. /// </summary> /// <param name="key"></param> /// <param name="obj"></param> public static void Insert(string key, object obj) { TCache.Insert(key, obj, int.MaxValue); }
public static void Insert(string key, object obj, CacheDependency dep, int seconds, CacheItemPriority priority, CacheItemRemovedCallback onRemoveCallback) { TCache.Insert(key, obj, dep, seconds, priority, onRemoveCallback); }
public static void Insert(string key, object obj, CacheDependency dep, int seconds) { TCache.Insert(key, obj, dep, seconds); }