15 references to ErrorText
System.Workflow.Activities (11)
Rules\DeclarativeExpressionConditionDeclaration.cs (1)
417ValidationError validationError = new ValidationError(genericErrorMsg + " " + actualError.ErrorText, errorNumber);
Rules\Executor.cs (2)
710throw new RuleEvaluationException(error.ErrorText); 757throw new RuleEvaluationException(error.ErrorText);
Rules\Parser\Parser.cs (5)
1689throw new RuleSyntaxException(error.ErrorNumber, error.ErrorText, lparenPosition); 1949throw new RuleSyntaxException(error.ErrorNumber, error.ErrorText, lparenPosition); 2817throw new RuleSyntaxException(error.ErrorNumber, error.ErrorText, position); 2833throw new RuleSyntaxException(error.ErrorNumber, error.ErrorText, position); 2849throw new RuleSyntaxException(error.ErrorNumber, error.ErrorText, position);
Rules\Rule.cs (1)
170ValidationError newError = new ValidationError(prefix + oldError.ErrorText, oldError.ErrorNumber, oldError.IsWarning);
Rules\RuleSetReference.cs (2)
166ValidationError validationError = new ValidationError(actualError.ErrorText, errorNumber); 175ValidationError validationError = new ValidationError(genericErrorMsg + " " + actualError.ErrorText, errorNumber);
System.Workflow.ComponentModel (3)
AuthoringOM\Compiler\XomlCompilerHelpers.cs (1)
607string errorText = error.ErrorText;
AuthoringOM\Design\ActivityDesigner.cs (1)
466DesignerAction designerAction = new DesignerAction(this, i, error.ErrorText, AmbientTheme.ConfigErrorImage);
AuthoringOM\Design\Dialogs\ActivityBindForm.cs (1)
289message += error.ErrorText + ((i == errors.Count - 1) ? string.Empty : "; ");
System.Workflow.Runtime (1)
System\Activities\Statements\Interop.cs (1)
1023Constraint.AddValidationError(context, new ValidationError(error.ErrorText, error.IsWarning, error.PropertyName));