System.Net.ConnectionPool.CleanupCallbackWrapper C# (CSharp) Method

CleanupCallbackWrapper() private static method

private static CleanupCallbackWrapper ( TimerThread timer, int timeNoticed, object context ) : void
timer TimerThread
timeNoticed int
context object
return void
        private static void CleanupCallbackWrapper(TimerThread.Timer timer, int timeNoticed, object context)
        {
            ConnectionPool pThis = (ConnectionPool) context;

            try
            {
                pThis.CleanupCallback();
            }
            finally
            {
                pThis.m_CleanupQueue.CreateTimer(s_CleanupCallback, context);
            }
        }