Removes an entry from the cache

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

Syntax

C#
public void Remove(
	string key
)
Visual Basic
Public Sub Remove ( 
	key As String
)
Visual C++
public:
virtual void Remove(
	String^ key
) sealed
F#
abstract Remove : 
        key : string -> unit 
override Remove : 
        key : string -> unit 

Parameters

key
Type: System..::..String
The key of the cache entry to be removed

Implements

ICache..::..Remove(String)

See Also