Click or drag to resize

ICacheApiRemove Method

Removes the specified item from the cache.

Namespace: Casewhere.Runtime.DSL.Api
Assembly: Casewhere.Runtime (in Casewhere.Runtime.dll) Version: 2.8.5.0
Syntax
C#
void Remove(
	string key
)

Parameters

key  String
The key.
Example
C#
var cacheApi = ctx.Use<ICacheApi>();
cacheApi.Remove("cache_key");
See Also