| MultiValueDictionaryTKey, TValueContainsValue Method (TKey, TValue) | 
 
            Determines whether this dictionary contains the specified value for the specified key 
            
 
    Namespace: 
   SD.LLBLGen.Pro.ORMSupportClasses
    Assembly:
   SD.LLBLGen.Pro.ORMSupportClasses (in SD.LLBLGen.Pro.ORMSupportClasses.dll) Version: 5.3.0.0 (5.3.0)
Syntaxpublic bool ContainsValue(
	TKey key,
	TValue value
)
Public Function ContainsValue ( 
	key As TKey,
	value As TValue
) As Boolean
Parameters
- key
 - Type: TKey
The key. - value
 - Type: TValue
The value. 
Return Value
Type: 
Booleantrue if the value is stored for the specified key in this dictionary, false otherwise
See Also