| GeneratorGetValueFromCycleCacheT 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.GeneratorCoreAssembly: SD.LLBLGen.Pro.GeneratorCore (in SD.LLBLGen.Pro.GeneratorCore.dll) Version: 5.0.0.0 (5.0.0)
Syntaxpublic T GetValueFromCycleCache<T>(
	string runqueueCacheKey,
	string key
)
Public 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
Implements
IGeneratorGetValueFromCycleCacheT(String, String)
See Also