Node.AllTriggers Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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
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.