ITestApiIsWorkflowCompleted Method
|
Evaluate whether the workflow is completed or not
Namespace:
Casewhere.Runtime.DSL.Api
Assembly:
Casewhere.Runtime (in Casewhere.Runtime.dll) Version: 2.8.1.0
Syntax bool IsWorkflowCompleted(
string workflowName
)
Parameters
- workflowName
- Type: SystemString
Workflow Name
Return Value
Type:
BooleanReturn true if the Workflow is completed, otherwise, return false
Examples var testApi = ctx.Use<ITestApi>();
testApi.IsWorkflowCompleted("workflowName")
See Also