Ejemplo n.º 1
0
        protected override void OnUnhandledException(object sender, ApplicationUnhandledExceptionEventArgs e)
        {
            Analytics.LogException(e.ExceptionObject);

            base.OnUnhandledException(sender, e);
        }
Ejemplo n.º 2
0
        protected override void OnDeactivate(object sender, DeactivatedEventArgs e)
        {
            Analytics.CloseSession();

            base.OnDeactivate(sender, e);
        }
Ejemplo n.º 3
0
        protected override void OnClose(object sender, ClosingEventArgs e)
        {
            Analytics.CloseSession();

            base.OnClose(sender, e);
        }
Ejemplo n.º 4
0
        protected override void OnActivate(object sender, ActivatedEventArgs e)
        {
            base.OnActivate(sender, e);

            Analytics.CreateAndStartAnalyticsSession();
        }
Ejemplo n.º 5
0
        protected override void OnLaunch(object sender, LaunchingEventArgs e)
        {
            base.OnLaunch(sender, e);

            Analytics.CreateAndStartAnalyticsSession();
        }