在类中使用Backgroundworker并为客户端应用程序生成事件

发布于 2024-08-04 12:02:35 字数 176 浏览 2 评论 0原文

我设计了一个用于将数据发布到服务器的类,这是一项耗时的任务,因此我在我的应用程序中使用了后台工作者。我决定将其添加到我的类中,并为我的应用程序生成两个事件 PostWorkerReportProgress 和 PostWorkerComplted,而不是在我的应用程序中重复使用 backgroundworker。我该怎么做?请举个例子。

i have designed a class for posting data to server, which is a time consuming task so that i have used background worker in my application. instead of repeatedly using backgroundworker in my application, i decided to add it to my class and generate two events PostWorkerReportProgress, PostWorkerComplted for my application. how can i do that?. any example please.

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

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

发布评论

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

评论(1

套路撩心 2024-08-11 12:02:35

首先,要使用 PostWorkerReportProgress,您必须告诉后台工作对象它可以使用 ReportProgress 功能。

现在,要到达 PostWorkerCompleted 事件,只需完成 DoWorks 方法即可。退出该方法会自动生成 WorkerCompleted 事件。如果您允许取消后台工作程序,请确保在退出 DoWorks 方法之前明确设置 e.Cancel=true。

对于进度报告,您必须显式调用执行此操作的后台工作对象的函数。

backgroundwrkrObject.ReportProgress(int)
backgroundwrkrObject.ReportProgress(int, object)

first, to use the PostWorkerReportProgress, you must tell the background worker object that it can use the ReportProgress functionality.

Now, to get to the PostWorkerCompleted event, just finish the DoWorks method. Exiting that method automatically generates the WorkerCompleted event. If you're allowing the CANCELLATION of the background worker, then make sure that you explicity set the e.Cancel=true in the DoWorks method before exiting it.

For the reports Progress, you must explicitly call the function of the backgroundworker object which does this.

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