Esempio n. 1
0
 public static void SetupAppSessionControl()
 {
     appSession = new LocalyticsSession(APPKEY);
     appSession.open();
     appSession.upload();
 }
Esempio n. 2
0
 // 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)
 {
     appSession = new LocalyticsSession(LocalyticsAppKey);
     appSession.open();
     appSession.upload();
 }
Esempio n. 3
0
 // 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)
 {
     appSession = new LocalyticsSession(LocalyticsAppKey);
     appSession.open();
     appSession.upload();
 }
Esempio n. 4
0
        private void InitializeAndUploadTracking()
        {
            //Tracker = new AnalyticsTracker();

            appSession = new LocalyticsSession(LocalyticsKey);
            appSession.open();
            appSession.upload();
        }