Assigning Properties to a BackgroundWorker C# with Example



Assigning Properties to a BackgroundWorker C# with Example

This allows the BackgroundWorker to be cancelled in between tasks 
bgWorker.WorkerSupportsCancellation = true; 
This allows the worker to report progress between completion of tasks... 
bgWorker.WorkerReportsProgress = true; 
//this must also be used in conjunction with the ProgressChanged event 
 

0 Comment's

Comment Form

Submit Comment