BrightIdeasSoftware.ImageRenderer.OnTimer C# (CSharp) Метод

OnTimer() публичный Метод

This is the method that is invoked by the timer. It basically switches control to the listview thread.
public OnTimer ( Object state ) : void
state Object not used
Результат void
        public void OnTimer(Object state)
        {
            if (this.ListView == null || this.Paused)
                this.tickler.Change(1000, Timeout.Infinite);
            else {
                if (this.ListView.InvokeRequired)
                    this.ListView.Invoke((MethodInvoker)delegate { this.OnTimer(state); });
                else
                    this.OnTimerInThread();
            }
        }