# Monday, July 20, 2009

In the Application class of Silverlight 3,

We may find about the out-of-browser feature :

 

  • The InstallState enumeration :

     

     

  • The InstallStateChanged event to intercept a change in the InstallState of an application :

     

     

  • The InstallState read-only property to get the current InstallState value of the application :

     

     

  • The IsRunningOutOfBrowser boolean value that indicates whether the application was launched from the out-of-browser state

     

     

  • The CheckAndDownloadUpdateAsync method is used to check for and download an updated version of the application (http://msdn.microsoft.com/en-us/library/system.windows.application.checkanddownloadupdateasync(VS.95).aspx)

     

     

  • The CheckAndDownloadUpdateCompleted event is raised when the application has finished checking for an update (cfr the CheckAndDownloadUpdateAsync method)

     

     

  • The Install method is called when you want to install the application out of the browser.

     

 

See you later!