BackgroundWorker RunWorkerCompletedEventArgs.Cancelled 始终为 false

发布于 2024-10-13 01:56:17 字数 262 浏览 6 评论 0原文

我通过调用 BackgroundWorker 上的 CancelAsync() 方法来取消操作,当执行发生在 RunWorkerCompleted 事件中时,Cancelled 属性>RunWorkerCompletedEventArgs 为 false。

不过,我不太清楚应该在何时何地将其设置为 true,如 EventArgs 属性中所示。那么,怎么样?

I cancel my operation by calling the CancelAsync() method on the BackgroundWorker, and when execution falls into the event RunWorkerCompleted, property Cancelled on RunWorkerCompletedEventArgs is false.

Though, I couldn't quite figure out when or where I should set it to true, as found in the EventArgs property. So, how?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

只想待在家 2024-10-20 01:56:17

来自 MSDN

已取消的财产
RunWorkerCompletedEventArgs
表示是否取消
请求已被处理
后台操作。

如果你的代码在
DoWork 事件处理程序检测到
通过检查取消请求
CancellationPending 标志和设置
的取消标志
工作事件参数
为 true,取消标志
RunWorkerCompletedEventArgs
也将被设置为 true。

From MSDN:

The Cancelled property of
RunWorkerCompletedEventArgs
indicates whether a cancellation
request was processed by the
background operation.

If your code in
the DoWork event handler detects a
cancellation request by checking the
CancellationPending flag and setting
the Cancel flag of
DoWorkEventArgs
to true, the Cancelled flag of
RunWorkerCompletedEventArgs
also will be set to true.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文