Using the BackgroundWorker in a Silverlight MVVM Application

Posted by axshon on ASP.net Weblogs See other posts from ASP.net Weblogs or by axshon
Published on Fri, 21 May 2010 14:16:00 GMT Indexed on 2010/05/21 14:51 UTC
Read the original article Hit count: 518

Filed under:
|
|
|
With Silverlight 4 and the Entity Framework you get a lot of work done on your behalf in terms of standard UI CRUD-style operations. Validations and I/O are pretty easy to accommodate out of the box. But sometimes you need to perform some long running tasks either on the client or on the server via service calls. To prevent your UI from hanging and annoying your users, you should consider placing these operations on a background thread. The BackgroundWorker object is the perfect solution for this...(read more)

© ASP.net Weblogs or respective owner

Related posts about c#

Related posts about Silverlight 4