7 references to TimerQueueTimer
System.Private.CoreLib (7)
src\libraries\System.Private.CoreLib\src\System\Threading\CancellationTokenSource.cs (1)
447timer = 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)
492this(timerCallback, state, GetMilliseconds(dueTime), GetMilliseconds(period), flowExecutionContext) 908_timer = new TimerHolder(new TimerQueueTimer(callback, state, dueTime, period, flowExecutionContext));