Click or drag to resize

IRuleApiGetRules Method

Get rules by type.

Namespace:  Casewhere.Runtime.DSL.Api
Assembly:  Casewhere.Runtime (in Casewhere.Runtime.dll) Version: 2.8.1.0
Syntax
C#
IList<DslRule> GetRules(
	string type
)

Parameters

type
Type: SystemString
Type of rule.

Return Value

Type: IListDslRule
Value return from rule expression
Examples
var ruleApi = ctx.Use<IRuleApi>();
ruleApi.GetRules(type);
See Also