8 references to IsWarning
System.Workflow.Activities (1)
Rules\Rule.cs (1)
170ValidationError newError = new ValidationError(prefix + oldError.ErrorText, oldError.ErrorNumber, oldError.IsWarning);
System.Workflow.ComponentModel (6)
AuthoringOM\Compiler\Validation\ValidationErrorCollection.cs (2)
62if (e != null && !e.IsWarning) 78if (e != null && e.IsWarning)
AuthoringOM\Compiler\XomlCompilerHelpers.cs (3)
549compilerError.IsWarning = error.IsWarning; 577ValidationError error2 = new ValidationError(GetPrettifiedErrorText(error), error.ErrorNumber, error.IsWarning); 618if (error.IsWarning)
AuthoringOM\Design\ActivityDesigner.cs (1)
464if (error != null && !error.IsWarning)
System.Workflow.Runtime (1)
System\Activities\Statements\Interop.cs (1)
1023Constraint.AddValidationError(context, new ValidationError(error.ErrorText, error.IsWarning, error.PropertyName));