IDslCompilerContextSet Method
|
Set value for a context variable.
Namespace: Casewhere.Runtime.DSL.CompilerContextAssembly: Casewhere.Runtime (in Casewhere.Runtime.dll) Version: 2.8.5.0
Syntaxvoid Set(
string key,
Object value
)
Parameters
- key String
- The key.
- value Object
- The value.
Remarks
In general, a context variable can accept anything. However, for storing data objects, we recommend using
Ref(String, String) for more efficiency and better overall performance.
You can also declare a variable and bind it to a Form Component using data binding:
Example
ctx.Set("Confirmed", true);
ctx.Set("ConfirmedOption", 5);
if (ctx.Get<bool>("Confirmed"))
DoSomething(ctx.Get<int>("ConfirmedOption"));
See Also