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 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!