// Code to execute when the application is activated (brought to foreground) // This code will not execute when the application is first launched private void Application_Activated(object sender, ActivatedEventArgs e) { TrialModeStorageProvider.Instance.Load(); if (!App.IsTrial) { HealthVaultService = new HealthVaultService(platformUrl, shellUrl, new Guid(masterAppId)); FacebookService = new FacebookService(); } }
// Code to execute when the application is launching (eg, from Start) // This code will not execute when the application is reactivated private void Application_Launching(object sender, LaunchingEventArgs e) { HealthVaultService = new HealthVaultService(platformUrl, shellUrl, new Guid(masterAppId)); FacebookService = new FacebookService(); }