Looks up an object in the cache
Namespace: BrightstarDB.CachingAssembly: BrightstarDB (in BrightstarDB.dll) Version: 1.9.0.0 (1.9.0.0)
Syntax
C# |
---|
public T Lookup<T>(
string key
)
|
Visual Basic |
---|
Public Function Lookup(Of T) (
key As String
) As T |
Visual C++ |
---|
public:
generic<typename T>
virtual T Lookup(
String^ key
) sealed |
F# |
---|
abstract Lookup :
key : string -> 'T
override Lookup :
key : string -> 'T |
Parameters
- key
- Type: System..::..String
The cache key of the object
Type Parameters
- T
- The type of the object to look up
Return Value
Type:
TThe object found or null if the object was not found or does not match the specified type.
Implements
ICache..::..Lookup<(Of <<'(T>)>>)(String)
See Also