Click or drag to resize

IGenerator.GetValueFromCycleCache<T> Method

Gets the value from cycle cache. It uses the runqueueCacheKey to obtain the runqueue cache and the key to obtain the value in that runqueue cache.

Namespace:  SD.LLBLGen.Pro.ApplicationCore
Assembly:  SD.LLBLGen.Pro.ApplicationCore (in SD.LLBLGen.Pro.ApplicationCore.dll) Version: 5.8.0.0 (5.8.21.0208)
Syntax
T GetValueFromCycleCache<T>(
	string runqueueCacheKey,
	string key
)

Parameters

runqueueCacheKey
Type: System.String
The key for the runqueue cache. Specify groupname for an entity element.
key
Type: System.String
The key for the value in the runqueue cache.

Type Parameters

T

Return Value

Type: T
the value stored for the key specified, or default(T) if not found or not of type T
See Also