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