cancelPending なしで backgroundWorker スレッドを停止する方法はありますか? 次のようなコードがあります。
DoWorkFunction
{
if(worker.cancellationPending == true) return; //this works great but
VeryLongTimeComputingFunc();//this function take a lot of time and if it starts i can't stop it with cancellationPending
...Do something
}
VeryLongTimeComputingFunc() を開始した場合でもワーカーを停止する方法はありますか?