Removes the specified item from the cache.
Namespace: Casewhere.Runtime.DSL.ApiAssembly: Casewhere.Runtime (in Casewhere.Runtime.dll) Version: 2.8.5.0
Syntaxvoid Remove(
string key
)
Parameters
- key String
- The key.
Examplevar cacheApi = ctx.Use<ICacheApi>();
cacheApi.Remove("cache_key");
See Also