我编写了一个非常简单的应用程序来实现一些基于任务的异步操作。
客户端代码调用一个返回任务的方法。我将 CancellationToken 传递给该方法,但即使在此过程中调用 CancellationToken.ThrowIfCancellationRequested 方法,取消也不会引发 OperationCancelledException。
如果您想自己测试,可以在这里下载整个解决方案: https ://github.com/stevehemond/asynctap-example
这是代码:
using System;
using System.Threading;
using System.Threading.Tasks;
using System.Windows.Forms;
namespace AsyncTapExample
{
public partial class MainForm : Form
{
private const int totalSeconds = 5;
private bool isStarted;
public MainForm()
{
this.InitializeComponent();
}
private async void processingButton_Click(object sender, EventArgs e)
{
var cts = new CancellationTokenSource();
if (!this.isStarted)
{
this.processingButton.Text = "Cancel";
this.isStarted = true;
var progressIndicator = new Progress<int>(this.ReportProgress);
try
{
await this.ProcessLongRunningOperationAsync(progressIndicator, cts.Token);
MessageBox.Show("Completed!");
}
catch (OperationCanceledException)
{
MessageBox.Show("Cancelled!");
}
this.ResetUI();
}
else
{
cts.Cancel();
this.processingButton.Text = "Start";
this.isStarted = false;
}
}
private void ResetUI()
{
this.progressBar.Value = 0;
this.processingButton.Enabled = true;
this.progressMessageLabel.Text = string.Empty;
this.isStarted = false;
this.processingButton.Text = "Start";
}
private Task ProcessLongRunningOperationAsync(IProgress<int> progress, CancellationToken ct)
{
return Task.Run(
() =>
{
for (var i = 0; i <= totalSeconds; i++)
{
ct.ThrowIfCancellationRequested();
Thread.Sleep(1000);
progress?.Report((i * 100) / totalSeconds);
}
},
ct);
}
private void ReportProgress(int progressPercentage)
{
this.progressBar.Value = progressPercentage;
this.progressMessageLabel.Text = $"{progressPercentage}%";
}
}
}
将 CancellationToken 传递给 Tasks 一定有一些我不明白的地方......我只是不知道是什么。