In my application backgroundWorker starts when I start the application. I can’t see anything before backgroundworker_dowork in call stack other than [external code].
Why backgroundworker is starting itself and how to avoid that?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
BackgroundWorkers are started by calling the worker’s RunWorkerAsync method. Find where this method is being called, breakpoint it and see what’s what.