Click here to Skip to main content
65,938 articles
CodeProject is changing. Read more.
Articles
(untagged)

Silverlight 3 Out of Browser

0.00/5 (No votes)
22 Sep 2009 1  
Silverlight 3 out of browser

In its third version, Silverlight finally has out of browser support. This allows developers to easily create a desktop and web application with one set of code. Not only does this provide a productivity increase for developers, it also provides a better user experience for the end user and options such as offline support.

The following new properties were added to simplify out of browser support.

1: //Check for updates and download and install.
2: Application.Current.CheckAndDownloadUpdateCompleted +=
     new CheckAndDownloadUpdateCompletedEventHandler(Current_CheckAndDownloadUpdateCompleted);
3: Application.Current.CheckAndDownloadUpdateAsync();
4:
5: //Is your application running OOB
6: bool IsOOB = Application.Current.IsRunningOutOfBrowser;
7:
8: //Network status
9: bool IsConnected = NetworkInterface.GetIsNetworkAvailable();

Mostly, these are just basic static properties, but something as simple as knowing whether or not the network is available will make providing automatic offline data caching a possibility.

Also, an asynchronous method “Application.Current.CheckAndDownloadUpdateAsync” will automatically check to see if the clients application is up to date. Microsoft has left it up to the developer to determine when and where this check is performed. This method browses to the originating URL and looks for differences in the XAP file. If a difference is found, it will automatically download and install the latest version and when complete, raise an event. You can then prompt the user to restart the application at which point they will be running the latest version.

On a side note, I just wanted to mention this is the first document I've written using voice recognition which is built into windows 7. I've dabble with voice recognition in the past but the latest version in Windows 7 seems light years ahead of where we were just a couple of years ago. If you have Windows 7, I highly suggest you give it a try.

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here