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 void Remove(
string key
)
Parameters
- key
- Type: SystemString
The key.
Examples var cacheApi = ctx.Use<ICacheApi>();
cacheApi.Remove("cache_key");
See Also