Returns true if the cache contains an entry with the specified key

Namespace: BrightstarDB.Caching
Assembly: BrightstarDB (in BrightstarDB.dll) Version: 1.9.0.0 (1.9.0.0)

Syntax

C#
bool ContainsKey(
	string key
)
Visual Basic
Function ContainsKey ( 
	key As String
) As Boolean
Visual C++
bool ContainsKey(
	String^ key
)
F#
abstract ContainsKey : 
        key : string -> bool 

Parameters

key
Type: System..::..String
The key to look for

Return Value

Type: Boolean
True if the cache contains an entry with the specified key, false otherwise

See Also