System.Data.Common.ADP.TimerHasExpired C# (CSharp) Method

TimerHasExpired() static private method

static private TimerHasExpired ( long timerExpire ) : bool
timerExpire long
return bool
        static internal bool TimerHasExpired(long timerExpire)
        {
            bool result = TimerCurrent() > timerExpire;
            return result;
        }
ADP