IDsl Compiler ContextGet TempT Method
Get value by name in a context workflow.
Throw an exception when key is not existed yet.
Definition
Namespace: Casewhere.Runtime.DSL.CompilerContext
Assembly: Casewhere.Runtime (in Casewhere.Runtime.dll) Version: 2.9.8.6
The variable value.
Assembly: Casewhere.Runtime (in Casewhere.Runtime.dll) Version: 2.9.8.6
C#
T GetTemp<T>(
string key
)
Parameters
- key String
- The key.
Type Parameters
- T
- The variable type.
Return Value
TThe variable value.
Example
C#
// Assuming a workflow has 2 activities like below:
// Activity 1:
ctx.SetTemp("Confirmed", true);
ctx.SetTemp("ConfirmedOption", 5);
// Activity 2:
if (ctx.GetTemp<bool>("Confirmed"))
DoSomething(ctx.GetTemp<int>("ConfirmedOption"));