Tutorial by Topics: backgroundworker

bgWorker.CancellationPending //returns whether the bgWorker was cancelled during its operation bgWorker.IsBusy //returns true if the bgWorker is in the middle of an operation bgWorker.ReportProgress(int x) //Reports a change in progress. Raises the "ProgressChanged" event ...
To run any of these examples just call them like that: static void Main() { new Program().ProcessDataAsync(); Console.ReadLine(); }

Page 1 of 1