Exemplo n.º 1
0
        public TimedEvent Timer1(int timeoutDelay, Dictionary <string, object> args)
        {
            TimedEvent timedEvent = new TimedEvent(timeoutDelay);

            timedEvent.Args    = args;
            timedEvent.OnFire += DataStoreSave;
            return(timedEvent);
        }
Exemplo n.º 2
0
 public void DataStoreSave(TimedEvent e)
 {
     e.Kill();
     Mono.Show = false;
 }