ICacheApiRemove Method

Removes the specified item from the cache.

Definition

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

Parameters

key  String
The key.

Example

C#
                    var cacheApi = ctx.Use<ICacheApi>();
cacheApi.Remove("cache_key");
                  

See Also