| CacheHelperAddInternal Method  | 
            Mirror to Cache.Add().
            
 
Namespace: CMS.HelpersAssembly: CMS.Helpers (in CMS.Helpers.dll) Version: 9.0.0
Syntaxprotected virtual void AddInternal(
	string key,
	Object value,
	CMSCacheDependency dependencies,
	DateTime absoluteExpiration,
	TimeSpan slidingExpiration,
	CacheItemPriority priority,
	CacheItemRemovedCallback onCacheRemoveCallback,
	bool caseSensitive,
	bool logOperation,
	bool useFullKey
)
Parameters
- key
 - Type: SystemString
Cache key - value
 - Type: SystemObject
Cache value - dependencies
 - Type: CMS.HelpersCMSCacheDependency
Cache dependencies - absoluteExpiration
 - Type: SystemDateTime
Cache absolute expiration - slidingExpiration
 - Type: SystemTimeSpan
Cache sliding expiration - priority
 - Type: System.Web.CachingCacheItemPriority
Cache priority - onCacheRemoveCallback
 - Type: System.Web.CachingCacheItemRemovedCallback
Cache callback on remove - caseSensitive
 - Type: SystemBoolean
Cache key is case sensitive - logOperation
 - Type: SystemBoolean
Log the cache operation - useFullKey
 - Type: SystemBoolean
If true, the add operation uses the full cache key which includes the context prefix 
See Also