Looks for an item in the cache and returns the bytes for that item

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

Syntax

C#
byte[] Lookup(
	string key
)
Visual Basic
Function Lookup ( 
	key As String
) As Byte()
Visual C++
array<unsigned char>^ Lookup(
	String^ key
)
F#
abstract 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

See Also