7 instantiations of RuleExpressionCondition
System.Workflow.Activities (7)
Rules\Design\Dialogs\ConditionBrowserDialog.cs (3)
61
RuleExpressionCondition declarativeRuleDefinition = new
RuleExpressionCondition
();
80
updatedRuleObject = new
RuleExpressionCondition
(declarativeRuleDefinition.Name, dlg.Expression);
144
RuleExpressionCondition ruleExpressionCondition = new
RuleExpressionCondition
(declarativeRuleDefinition.Expression);
Rules\Design\Dialogs\RuleConditionDialog.cs (1)
23
RuleExpressionCondition ruleExpressionCondition = new
RuleExpressionCondition
();
Rules\Design\LogicalExpressionTypeConverter.cs (2)
91
return new
RuleExpressionCondition
(expression).ToString();
289
RuleExpressionCondition newCondition = new
RuleExpressionCondition
();
Rules\Parser\Parser.cs (1)
1042
return new
RuleExpressionCondition
(exprResult);
27 references to RuleExpressionCondition
System.Workflow.Activities (27)
Rules\DeclarativeExpressionConditionDeclaration.cs (4)
120
RuleExpressionCondition
declarativeConditionDefinition = obj as
RuleExpressionCondition
;
201
RuleExpressionCondition
ruleCondition = (
RuleExpressionCondition
)this.MemberwiseClone();
Rules\Design\Dialogs\ConditionBrowserDialog.cs (15)
50
RuleExpressionCondition
ruleExpressionCondition = ruleObject as
RuleExpressionCondition
;
61
RuleExpressionCondition
declarativeRuleDefinition = new RuleExpressionCondition();
73
RuleExpressionCondition
declarativeRuleDefinition = currentRuleObject as
RuleExpressionCondition
;
83
this.declarativeConditionCollection.Add(updatedRuleObject as
RuleExpressionCondition
);
93
RuleExpressionCondition
declarativeRuleDefinition = ruleObject as
RuleExpressionCondition
;
110
RuleExpressionCondition
declarativeRuleDefinition = ruleObject as
RuleExpressionCondition
;
117
RuleExpressionCondition
declarativeRuleDefinition = ruleObject as
RuleExpressionCondition
;
141
RuleExpressionCondition
declarativeRuleDefinition = ruleObject as
RuleExpressionCondition
;
144
RuleExpressionCondition
ruleExpressionCondition = new RuleExpressionCondition(declarativeRuleDefinition.Expression);
Rules\Design\Dialogs\RuleConditionDialog.cs (2)
23
RuleExpressionCondition
ruleExpressionCondition = new RuleExpressionCondition();
130
this.ruleExpressionCondition = (
RuleExpressionCondition
)this.ruleParser.ParseCondition(this.conditionTextBox.Text);
Rules\Design\LogicalExpressionTypeConverter.cs (5)
289
RuleExpressionCondition
newCondition = new RuleExpressionCondition();
353
RuleExpressionCondition
conditionDefinition = (
RuleExpressionCondition
)conditionDefs[conditionDecl.ConditionName];
397
RuleExpressionCondition
conditionDefinition = (
RuleExpressionCondition
)conditionDefs[conditionDecl.ConditionName];
Rules\Parser\Parser.cs (1)
1018
internal
RuleExpressionCondition
ParseCondition(string expressionString)