Implemented in dervied classes to retrieve an entry from the cache

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

Syntax

C#
protected abstract AbstractCacheEntry GetEntry(
	string key
)
Visual Basic
Protected MustOverride Function GetEntry ( 
	key As String
) As AbstractCacheEntry
Visual C++
protected:
virtual AbstractCacheEntry^ GetEntry(
	String^ key
) abstract
F#
abstract GetEntry : 
        key : string -> AbstractCacheEntry 

Parameters

key
Type: System..::..String
The key to lookup

Return Value

Type: AbstractCacheEntry
The cache entry found or null if there was no match on key

See Also