15 references to TimerCurrent
System.Data (15)
fx\src\data\System\Data\Common\AdapterUtil.cs (2)
1944
bool result =
TimerCurrent
() > timerExpire;
1949
long timerNow =
TimerCurrent
();
fx\src\data\System\Data\ProviderBase\DbConnectionPool.cs (1)
1203
CreationTimeout == 0 ? Timeout.Infinite : ADP.
TimerCurrent
() + ADP.TimerFromSeconds(CreationTimeout/1000),
fx\src\data\System\Data\ProviderBase\TimeoutTimer.cs (3)
70
timeout._timerExpire = checked(ADP.
TimerCurrent
() + timeout._originalTimerTicks);
100
_timerExpire = checked(ADP.
TimerCurrent
() + _originalTimerTicks);
113
_timerExpire = checked(ADP.
TimerCurrent
() + _originalTimerTicks);
fx\src\data\System\Data\SqlClient\SqlCommand.cs (5)
2209
long firstAttemptStart = ADP.
TimerCurrent
();
3066
long reconnectionStart = ADP.
TimerCurrent
();
4164
long firstAttemptStart = ADP.
TimerCurrent
();
4281
long parameterEncryptionStart = ADP.
TimerCurrent
();
4352
long reconnectionStart = ADP.
TimerCurrent
();
fx\src\data\System\Data\SqlClient\SqlConnection.cs (1)
1225
commandTimeoutExpiration = ADP.
TimerCurrent
() + ADP.TimerFromSeconds(timeout);
fx\src\data\System\Data\SqlClient\SqlStatistics.cs (2)
135
_executionTime += (ADP.
TimerCurrent
() - _startExecutionTimestamp);
142
_networkServerTime += (ADP.
TimerCurrent
() - _startNetworkServerTimestamp);
fx\src\data\System\Data\SqlClient\TdsParserStaticMethods.cs (1)
201
result = checked(ADP.
TimerCurrent
() + ADP.TimerFromMilliseconds(timeoutMilliseconds));