private bool InvokeTimerCallback(TimerBase timer)
 {
     try {
         return(timer.Callback(timer));
     } catch (Exception ex) {
         this.PluginTrace.WriteLineError("A Timer's callback has thrown an exception. Excpetion details: " + ex);
         return(false);
     }
 }
 private bool InvokeTimerCallback(TimerBase timer)
 {
     try {
         return timer.Callback(timer);
     } catch (Exception ex) {
         this.PluginTrace.WriteLineError("A timer's callback has thrown an exception. Excpetion details: " + ex);
         return false;
     }
 }