System.Net.TimerThread.TimerQueue.TimerQueue C# (CSharp) Method

TimerQueue() private method

Create a new TimerQueue. TimerQueues must be created while s_NewQueues is locked in order to synchronize with Shutdown().

private TimerQueue ( int durationMilliseconds ) : System.Collections
durationMilliseconds int
return System.Collections
            internal TimerQueue(int durationMilliseconds) :
                base(durationMilliseconds)
            {
                // Create the doubly-linked list with a sentinel head and tail so that this member never needs updating.
                _timers = new TimerNode();
                _timers.Next = _timers;
                _timers.Prev = _timers;
            }
TimerThread.TimerQueue