Click or drag to resize
DataCacheHelperGetCachedReturnType Method
Gets the data using the cache.

Namespace: CMS.DataEngine
Assembly: CMS.DataEngine (in CMS.DataEngine.dll) Version: 8.2.23
Syntax
C#
public static ReturnType GetCached<ReturnType>(
	DataCacheHelperGetEventHandler<ReturnType> handler,
	string key,
	int cacheMinutes,
	bool requestCache,
	DataCacheHelperGetCacheDependencyEventHandler<ReturnType> dependencyCallback,
	string context
)

Parameters

handler
Type: CMS.DataEngineDataCacheHelperGetEventHandlerReturnType
Handler to retrieve the data from the database
key
Type: SystemString
Cache key to use
cacheMinutes
Type: SystemInt32
Cache minutes
requestCache
Type: SystemBoolean
Use request cache
dependencyCallback
Type: CMS.DataEngineDataCacheHelperGetCacheDependencyEventHandlerReturnType
Callback to get the cache dependency for the object
context
Type: SystemString
Context string

Type Parameters

ReturnType
Return type

Return Value

Type: ReturnType
See Also