I'm using the Csla BackgroundWorker wrapper because I need the Context available, however I noticed it was missing an override of the ReportProgress method that includes a UserState object (in case you want to report more than just a percent complete).
I added this to the BackgroundWorker class as it is completely straightforward, but was hoping it could be included in the default CSLA version, as I don't like to modify CSLA too much - makes upgrading to new versions more complicated.
public void ReportProgress(int percentProgress, object userState) { _myWorker.ReportProgress(percentProgress, userState); }
Thanks.
Thanks,
Added to bugtracker: http://www.lhotka.net/cslabugs/edit_bug.aspx?id=980
Done and checked in to repository.
Copyright (c) Marimer LLC