BinaryStudio.ClientManager.DomainModel.Infrastructure.Timer.TimerProc C# (CSharp) 메소드

TimerProc() 개인적인 메소드

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