Returns true if the cache contains an entry with the specified key
Namespace: BrightstarDB.CachingAssembly: 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:
BooleanTrue if the cache contains an entry with the specified key, false otherwise
Implements
ICache..::..ContainsKey(String)
See Also