| CodeGenerationCycleCacheAddRunQueueCache Method  | 
 
            Adds the values of the specified runqueue cache to this cache under the key specified. If a cache with that key already exists, the values are
            merged into that stored cache, overwriting values with the same key in that cache. 
            
 
    Namespace: 
   SD.LLBLGen.Pro.ApplicationCore.CodeGenerationMetaData
    Assembly:
   SD.LLBLGen.Pro.ApplicationCore (in SD.LLBLGen.Pro.ApplicationCore.dll) Version: 5.3.0.0 (5.3.0)
Syntaxpublic void AddRunQueueCache(
	string keyName,
	Dictionary<string, Object> runQueueCacheToAdd
)
Public Sub AddRunQueueCache ( 
	keyName As String,
	runQueueCacheToAdd As Dictionary(Of String, Object)
)
Parameters
- keyName
 - Type: SystemString
Name of the key. - runQueueCacheToAdd
 - Type: System.Collections.GenericDictionaryString, Object
The run queue cache to add. 
See Also