Universal Windows Service Class Library

CronTrigger.TimerCallback Method 

Function is called from timer which shows that the trigger event should be fired.

protected override void TimerCallback(
   object data
);

Parameters

data
Containing specific timer data.

Remarks

Callback function of asynchronous timer event call. When this function is called the interval to first start event is over and trigger event will be fired.

In this case the trigger will be restarted because it's cron trigger which means that the next start event must be calculated every time.

See Also

CronTrigger Class | uws.Triggers Namespace | Trigger