| IGeneratorGetValueFromCycleCacheT 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.1.0.0 (5.1.0)
SyntaxT GetValueFromCycleCache<T>(
	string runqueueCacheKey,
	string key
)
Function GetValueFromCycleCache(Of T) ( 
	runqueueCacheKey As String,
	key As String
) As T
Parameters
- runqueueCacheKey
 - Type: SystemString
The key for the runqueue cache. Specify groupname for an entity element. - key
 - Type: SystemString
The key for the value in the runqueue cache. 
Type Parameters
- T
 
Return Value
Type: 
Tthe value stored for the key specified, or default(T) if not found or not of type T
See Also