ITestApiGetT(String, String) Method
|
Get value by name in a workflow.
Namespace: Casewhere.Runtime.DSL.ApiAssembly: Casewhere.Runtime (in Casewhere.Runtime.dll) Version: 2.8.5.0
SyntaxT Get<T>(
string workflowName,
string key
)
Parameters
- workflowName String
- The name of workflow.
- key String
- The key.
Type Parameters
- T
- The variable type.
Return Value
TValue in running workflow by type.
Examplevar testApi = ctx.Use<ITestApi>();
testApi.Get< int >("SampleWorkflow", "IntValue")
See Also