4 writes to thenActions
System.Workflow.Activities (4)
Rules\Rule.cs (4)
49
this.
thenActions
= thenActions;
56
this.
thenActions
= thenActions;
129
get { if (thenActions == null)
thenActions
= new List<RuleAction>(); return thenActions; }
209
newRule.
thenActions
= new List<RuleAction>();
12 references to thenActions
System.Workflow.Activities (12)
Rules\Executor.cs (3)
403
currentRuleState.Rule.
thenActions
:
632
if (rule.
thenActions
!= null)
634
rsi.thenSideEffects = GetActionSideEffects(behavior, rule.
thenActions
, validator);
Rules\Rule.cs (9)
129
get { if (
thenActions
== null) thenActions = new List<RuleAction>(); return
thenActions
; }
152
if (
thenActions
!= null)
153
ValidateRuleActions(
thenActions
, validation);
207
if (this.
thenActions
!= null)
210
foreach (RuleAction thenAction in this.
thenActions
)
211
newRule.
thenActions
.Add(thenAction.Clone());
247
if (!ActionsEqual(this.
thenActions
, other.
thenActions
))