Click here to Skip to main content
15,885,914 members
Articles / Silverlight / Silverlight3

Silverlight 3 Out of Browser

Rate me:
Please Sign up or sign in to vote.
4.50/5 (3 votes)
22 Sep 2009CPOL1 min read 16.8K   4   2
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.

C#
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, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Software Developer (Senior) Anytime Fitness
United States United States
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions

 
Generaloptimal blogging Pin
Herre Kuijpers23-Sep-09 22:02
Herre Kuijpers23-Sep-09 22:02 
GeneralRe: optimal blogging Pin
Paul_Wade2-Oct-09 7:24
Paul_Wade2-Oct-09 7:24 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.