IDslCompilerContextSetTemp Method
|
Set temporary value in a context workflow.
The value only maintaines in memory and will not be persisted to database.
Namespace: Casewhere.Runtime.DSL.CompilerContextAssembly: Casewhere.Runtime (in Casewhere.Runtime.dll) Version: 2.8.5.0
Syntaxvoid SetTemp(
string key,
Object value
)
Parameters
- key String
- The key.
- value Object
- The value.
Example
ctx.SetTemp("Confirmed", true);
ctx.SetTemp("ConfirmedOption", 5);
if (ctx.GetTemp<bool>("Confirmed"))
DoSomething(ctx.GetTemp<int>("ConfirmedOption"));
See Also