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