BackgroundWorker, , . WorkerSupportsCancellation true BackgroundWorker CancelAsync, .
, , . , CancellationPending BackgroundWorker.
MSDN .
. BackgroundWorker 20 ; a BackgroundWorker . 20 BackgroundWorkers? , , ? concurrency Winforms, .
, ManualResetEvent. , . :
ManualResetEvent cancelEvent = new ManualResetEvent(false);
for (int i = 0; i < 20; i++)
{
ThreadPool.QueueUserWorkItem(s =>
{
if (cancelEvent.WaitOne(0, true))
return;
});
}
- , cancelEvent.Set(), , .