编程语言
首页 > 编程语言> > c# – 如何在Backgroundworker中取消DoWork

c# – 如何在Backgroundworker中取消DoWork

作者:互联网

我知道这不是关于取消BackGroundWorker的第一个问题,但我找不到解决问题的答案.
我有一个发送文件的方法..即时通讯使用backgroundworker来调用它..所以我怎样才能在发送文件的过程中取消backgroundworker ..我的意思是我应该放在哪里

if (backgroundWorker1.CancellationPending == true)
   {
       e.Cancel = true;
       break;
   }

这是代码:

 private void backgroundWorker1_DoWork(object sender, DoWorkEventArgs e)
    {
        List<object> job = (List<object>)e.Argument;
        string srcPath = (string)job[0];
        string destPath = (string)job[1];
        SendFile(srcPath, destPath);
    }

发送方式:

 private void SendFile(string srcPath, string destPath)
    {
        string dest = Path.Combine(destPath, Path.GetFileName(srcPath));
        using (fs = new FileStream(srcPath, FileMode.Open, FileAccess.Read))
        {
            try
            {
                long fileSize = fs.Length;
                if (sizeAll == 0)
                    sizeAll = fileSize;
                sum = 0;
                int count = 0;
                data = new byte[packetSize];
                SendCommand("receive<" + dest + "<" + fs.Length.ToString());
                ProgressLabel(++fileCount, allFileCount);
                InfoLabel("Sending " + srcPath, "busy");
                while (sum < fileSize)
                {
                    count = fs.Read(data, 0, data.Length);
                    network.Write(data, 0, count);
                    sum += count;
                    sumAll += count;
                    backgroundWorker1.ReportProgress((int)((sum * 100) / fileSize));
                }
                network.Flush();
            }
            finally
            {
                network.Read(new byte[1], 0, 1);
                CloseTransfer();
            }
        }
    }

我应该在send方法的while()循环中检查CancellationPending ..但是我不能从这个方法到[background.de]的背景工作者…我该怎么办?

解决方法:

DoWorkEventArgs e可以作为SendFile中的第三个参数传递:

private void backgroundWorker1_DoWork(object sender, DoWorkEventArgs e) 
{ 
    List<object> job = (List<object>)e.Argument; 
    string srcPath = (string)job[0]; 
    string destPath = (string)job[1]; 
    SendFile(srcPath, destPath, e); 
} 

然后SendFile会

private void SendFile(string srcPath, string destPath, DoWorkEventArgs e)   

在ReportProgress之后的循环中

   if (backgroundWorker1.CancellationPending == true)    
   {    
       e.Cancel = true;    
       return; // this will fall to the finally and close everything    
   }   

标签:c,backgroundworker,cancellation
来源: https://codeday.me/bug/20190716/1481301.html