Click or drag to resize
DataCacheHelper.GetCachedObject Method (Guid, DataCacheHelper.GetEventHandler1<BaseInfo, Guid>, String, Int32, Boolean, DataCacheHelper.GetCacheDependencyEventHandler<BaseInfo>, String)
Gets the object by its GUID using the cache.

Namespace: CMS.DataEngine
Assembly: CMS.DataEngine (in CMS.DataEngine.dll) Version: 8.2.23
Syntax
C#
public static BaseInfo GetCachedObject(
	Guid guid,
	DataCacheHelper. GetEventHandler1<BaseInfo, Guid> handler,
	string key,
	int cacheMinutes,
	bool requestCache,
	DataCacheHelper. GetCacheDependencyEventHandler<BaseInfo> dependencyCallback,
	string context
)

Parameters

guid
Type: System.Guid
Guid of the object
handler
Type: CMS.DataEngine.DataCacheHelper.GetEventHandler1<BaseInfo, Guid>
Handler to retrieve the object from the database
key
Type: System.String
Cache key to use
cacheMinutes
Type: System.Int32
Cache minutes
requestCache
Type: System.Boolean
Use request cache
dependencyCallback
Type: CMS.DataEngine.DataCacheHelper.GetCacheDependencyEventHandler<BaseInfo>
Callback to get the cache dependency for the object
context
Type: System.String
Context string

Return Value

Type: BaseInfo
See Also