Example #1
0
 public override void sessionError([email protected] uis, Exception t)
 {
     // hide the splash dialog if necessary, show the error dialog and exit
     Splash.Close();
     base.sessionError(uis, t);
     java.lang.System.exit(Marshal.GetHRForException(t));
 }
Example #2
0
 public override void sessionEnded([email protected] uis)
 {
     // exit on session end
     base.sessionEnded(uis);
     java.lang.System.exit(0);
 }