RuleReevaluationBehavior Enum

Definition

Specifies whether a Rule can be reevaluated.

public enum class RuleReevaluationBehavior
public enum RuleReevaluationBehavior
type RuleReevaluationBehavior = 
Public Enum RuleReevaluationBehavior
Inheritance
RuleReevaluationBehavior

Fields

Always 1

Indicates that the Rule can be reevaluated multiple times. Always is the default value.

Never 0

Indicates that the Rule is executed once. A condition may be evaluated several times until the rule executes actions, but the rule will never be evaluated again.

Remarks

This enumeration is used to limit the number of times that a Rule runs, primarily to prevent infinite loops. The default value for this field is Always. This means that the number of times the Rule is run is not limited, and the Rule can be run as many times as determined by the chaining cycles in the RuleSet evaluation.

Applies to