Can a Backgroundworker proceed working when it reaches the "...Completed" event handler

Posted by mrbamboo on Stack Overflow See other posts from Stack Overflow or by mrbamboo
Published on 2010-04-24T21:06:33Z Indexed on 2010/04/24 21:13 UTC
Read the original article Hit count: 212

Filed under:
|
|

Hi,

as described in the title. My backgroundworker is doing its job...finishes the first part and calls the ...Completed event handler. Can I tell here my backgroundworker to proceed with another job by doing DoWork -= OldJob DoWork += NewJob

also DoWorkCompleted -= OldJobCompleted DoWorkCompleted += NewJobCompleted

Is this possible?

© Stack Overflow or respective owner

Related posts about backgroundworker

Related posts about c#