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