System.ComponentModel.BackgroundWorker.BackgroundWorker C# (CSharp) Method

BackgroundWorker() public method

public BackgroundWorker ( ) : System.ComponentModel.Design.Serialization
return System.ComponentModel.Design.Serialization
        public BackgroundWorker()
        {
            threadStart        = new WorkerThreadStartDelegate(WorkerThreadStart);
            operationCompleted = new SendOrPostCallback(AsyncOperationCompleted);
            progressReporter   = new SendOrPostCallback(ProgressReporter);
        }