Node.AllTriggers Property

Definition

Gets all triggers that contain the Clause in this node.

public System.Collections.Generic.IReadOnlyList<AdaptiveExpressions.TriggerTrees.Trigger> AllTriggers { get; }
member this.AllTriggers : System.Collections.Generic.IReadOnlyList<AdaptiveExpressions.TriggerTrees.Trigger>
Public ReadOnly Property AllTriggers As IReadOnlyList(Of Trigger)

Property Value

IReadOnlyList<Trigger>

All triggers that contain the Clause in this node.

Remarks

Triggers only contain the most specific trigger, so if this node is Pred(A) and there was a rule R1: Pred(A) -> A1 and R2: Pred(A) v Pred(B) -> A2 then the second trigger would be in AllTriggers, but not Triggers because it is more general.

Applies to