2 writes to validator
System.Data (2)
cdf\src\NetFx40\Tools\System.Activities.Presentation\System\Activities\Presentation\View\VisualBasicEditor.xaml.cs (2)
278this.validator = null; 1770this.validator = new BackgroundWorker();
13 references to validator
System.Data (13)
cdf\src\NetFx40\Tools\System.Activities.Presentation\System\Activities\Presentation\View\VisualBasicEditor.xaml.cs (13)
274if (validator != null) 276this.validator.CancelAsync(); 277this.validator.Dispose(); 1768if (this.validator == null) 1771this.validator.WorkerReportsProgress = true; 1772this.validator.WorkerSupportsCancellation = true; 1774this.validator.DoWork += delegate(object obj, DoWorkEventArgs args) 1804this.validator.RunWorkerCompleted += delegate(object obj, RunWorkerCompletedEventArgs args) 1815if (this.validator != null && !this.validator.IsBusy) 1818this.validator.RunWorkerAsync(target); 1825this.validator.ProgressChanged += delegate(object obj, ProgressChangedEventArgs args) 1831this.validator.RunWorkerAsync(new ExpressionValidationContext(this));