Looks for an item in the cache and returns the bytes for that item
Namespace: BrightstarDB.CachingAssembly: BrightstarDB (in BrightstarDB.dll) Version: 1.9.0.0 (1.9.0.0)
Syntax
C# |
---|
public byte[] Lookup(
string key
) |
Visual Basic |
---|
Public Function Lookup (
key As String
) As Byte() |
Visual C++ |
---|
public:
virtual array<unsigned char>^ Lookup(
String^ key
) sealed |
F# |
---|
abstract Lookup :
key : string -> byte[]
override Lookup :
key : string -> byte[] |
Parameters
- key
- Type: System..::..String
The cache key of the item
Return Value
Type:
array<Byte>[]()[][]The bytes for the cached item or null if the item is not found in the cache
Implements
ICache..::..Lookup(String)
See Also