BinaryStudio.ClientManager.DomainModel.Infrastructure.Timer.TimerProc C# (CSharp) Méthode

TimerProc() private méthode

Callback function which will be executed time to time.
private TimerProc ( object state ) : void
state object itself timer, not used yet
Résultat void
        private void TimerProc(object state)
        {
            if (Enabled)
            {
                RaiseOnTick(state, new EventArgs());
            }
        }