在类中使用Backgroundworker并为客户端应用程序生成事件
我设计了一个用于将数据发布到服务器的类,这是一项耗时的任务,因此我在我的应用程序中使用了后台工作者。我决定将其添加到我的类中,并为我的应用程序生成两个事件 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
首先,要使用 PostWorkerReportProgress,您必须告诉后台工作对象它可以使用 ReportProgress 功能。
现在,要到达 PostWorkerCompleted 事件,只需完成 DoWorks 方法即可。退出该方法会自动生成 WorkerCompleted 事件。如果您允许取消后台工作程序,请确保在退出 DoWorks 方法之前明确设置 e.Cancel=true。
对于进度报告,您必须显式调用执行此操作的后台工作对象的函数。
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.