Click or drag to resize
CacheHelper.InsertInternal Method
Inserts the item into the cache.

Namespace: CMS.Helpers
Assembly: CMS.Helpers (in CMS.Helpers.dll) Version: 8.2.23
Syntax
C#
protected virtual void InsertInternal(
	string key,
	Object value,
	CMSCacheDependency dependencies,
	DateTime absoluteExpiration,
	TimeSpan slidingExpiration,
	CacheItemPriority priority,
	CacheItemRemovedCallback onRemoveCallback,
	bool useFullKey
)

Parameters

key
Type: System.String
Cache key
value
Type: System.Object
Value to cache
dependencies
Type: CMS.Helpers.CMSCacheDependency
Cache dependencies
absoluteExpiration
Type: System.DateTime
Absolute expiration time
slidingExpiration
Type: System.TimeSpan
Sliding expiration interval
priority
Type: System.Web.Caching.CacheItemPriority
Cache priority
onRemoveCallback
Type: System.Web.Caching.CacheItemRemovedCallback
Callback called on the removal of the item
useFullKey
Type: System.Boolean
If true, the full cache key is used
See Also