Update Out Of Browser (OOB) Silverlight apps
Posted by: Laurent Duveau,
on 03 Nov 2009 |
View original | Bookmarked: 0 time(s)
Once your Silverlight application installed on the local computer what happens if there is an update ? The local application is not updated automatically but you can check that in your code. The CheckAndDownloadUpdateAsync() method downloads the updated application if available and you can notify the user. I put this code in the constructor of the App: App.xaml.cs: public App()
{
this.Startup += this.Application_Startup;
this.UnhandledException += this.Application_UnhandledException;
...