I have a time taking process in DoWork of my BackgroundWorker.
Whenever I try to Cancel the job by backgroundWorker1.CancelAsync(), the backgroundWorker1.CancellationPending becomes Pending and I should wait for the next iteration in my DoWork to Cancel the job and stepping out of it myself.
Is there any way to Cancel the job immediately after calling it?