Determines if the cache contains an entry under a given key

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

Syntax

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

Parameters

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

Return Value

Type: Boolean
True if an entry with this key is in the cache, false otherwise

Implements

ICache..::..ContainsKey(String)

See Also