6 references to Expiration
System (6)
net\System\Net\_TimerThread.cs (6)
143
int remaining = IsTickBetween(StartTime,
Expiration
, now) ?
144
(int) (Math.Min((uint) unchecked(
Expiration
- now), (uint) Int32.MaxValue)) : 0;
364
nextExpiration = timer.
Expiration
;
540
if (IsTickBetween(StartTime,
Expiration
, nowMilliseconds)) {
541
GlobalLog.Print("TimerThreadTimer#" + StartTime + "::Fire() Not firing (" + StartTime + " <= " + nowMilliseconds + " < " +
Expiration
+ ")");
550
GlobalLog.Print("TimerThreadTimer#" + StartTime + "::Fire() Firing (" + StartTime + " <= " + nowMilliseconds + " >= " +
Expiration
+ ")");