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