QueuePendingRequest() static private method

static private QueuePendingRequest ( bool started_internally ) : HttpWorkerRequest
started_internally bool
return HttpWorkerRequest
Example #1
0
        void TimeoutReached(object state)
        {
            HttpRuntime.QueuePendingRequest(false);
            if (Interlocked.CompareExchange(ref timeout_possible, 0, 0) == 0)
            {
                timer.Change(2000, 0);
                return;
            }
            StopTimeoutTimer();

            thread.Abort(new StepTimeout());
        }