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.1.0
Syntax
C#
void Remove(
	string key
)

Parameters

key
Type: SystemString
The key.
Examples
var cacheApi = ctx.Use<ICacheApi>();
cacheApi.Remove("cache_key");
See Also