Top "Backgroundworker" questions

BackgroundWorker is a helper class in .NET's System.

BackgroundWorker exception handling

I'm working with the following components: a Library (which throws an exception) a test-console to test my logging the enterprise …

c# multithreading exception backgroundworker enterprise-library
How to report progress from within a class to a BackgroundWorker?

My WinForm calls a class which performs some copying actions. I'd like to show the progress of this on a …

c# backgroundworker
Popping a MessageBox for the main app with Backgroundworker in WPF

In a WPF app, I am using a BackgroundWorker to periodically check for a condition on the server. While that …

c# wpf multithreading backgroundworker messagebox
How to yield return inside anonymous methods?

Basically I have an anonymous method that I use for my BackgroundWorker: worker.DoWork += ( sender, e ) => { foreach ( var effect …

c# .net backgroundworker anonymous-methods yield-return
Display progress of execution through progress bar

I have a silly problem but i am stuck. I am executing a stored procedure form my code procedure takes …

c# .net stored-procedures progress-bar backgroundworker
BackgroundWorker RunWorkerCompleted Event

My C# application has several background workers. Sometimes one background worker will fire off another. When the first background worker …

c# .net multithreading events backgroundworker
C# backgroundWorker reports string?

How can I report a string (like "now searching file. . .", "found selection. . .") back to my windows.form from a backgroundWorker …

c# visual-studio-2008 reporting backgroundworker progress
Updating UI with BackgroundWorker in WPF

I am currently writing a simple WPF 3.5 application that utilizes the SharePoint COM to make calls to SharePoint sites and …

c# wpf sharepoint backgroundworker
Throwing exceptions in callback method for Timers

I was unable to find an answer to this question anywhere... What happens with the exceptions thrown in the callback …

c# exception timer backgroundworker multithreading