System.Net.ConnectionPool.CancelErrorCallback C# (CSharp) Méthode

CancelErrorCallback() private méthode

Called on error, after we waited a set amount of time from aborting

private CancelErrorCallback ( ) : void
Résultat void
        private void CancelErrorCallback()
        {
            TimerThread.Timer timer = m_ErrorTimer;
            if (timer != null && timer.Cancel())
            {
                m_ErrorOccured = false;
                ErrorEvent.Reset();
                m_ErrorTimer = null;
                m_ResError = null;
            }
        }