Click or drag to resize

ITestApiIsActivityIncluded Method

Evaluate whether the activity is included or not
Examples
var testApi = ctx.Use<ITestApi>();
testApi.IsActivityIncluded("workflowName", "activityName")

Namespace:  Casewhere.Runtime.DSL.Api
Assembly:  Casewhere.Runtime (in Casewhere.Runtime.dll) Version: 2.8.1.0
Syntax
C#
bool IsActivityIncluded(
	string workflowName,
	string activityName
)

Parameters

workflowName
Type: SystemString
Workflow Name
activityName
Type: SystemString
Activity Name

Return Value

Type: Boolean
Return true if the Activity is included, otherwise, return false
See Also