7 references to TimerQueueTimer
System.Private.CoreLib (7)
src\libraries\System.Private.CoreLib\src\System\Threading\CancellationTokenSource.cs (1)
447
timer = new
TimerQueueTimer
(s_timerCallback, this, Timeout.UnsignedInfinite, Timeout.UnsignedInfinite, flowExecutionContext: false);
src\libraries\System.Private.CoreLib\src\System\Threading\PeriodicTimer.cs (2)
41
_timer = new
TimerQueueTimer
(s => ((State)s!).Signal(), _state, ms, ms, flowExecutionContext: false);
69
_timer = new
TimerQueueTimer
(callback, _state, ms, ms, flowExecutionContext: false);
src\libraries\System.Private.CoreLib\src\System\Threading\Tasks\Task.cs (2)
2885
_timer = new
TimerQueueTimer
(callback, this, millisecondsDelay, Timeout.UnsignedInfinite, flowExecutionContext: false);
5810
_timer = new
TimerQueueTimer
(s_timerCallback, this, millisecondsDelay, Timeout.UnsignedInfinite, flowExecutionContext: false);
src\libraries\System.Private.CoreLib\src\System\Threading\Timer.cs (2)
492
this
(timerCallback, state, GetMilliseconds(dueTime), GetMilliseconds(period), flowExecutionContext)
908
_timer = new TimerHolder(new
TimerQueueTimer
(callback, state, dueTime, period, flowExecutionContext));