QueuePendingRequest() 정적인 개인적인 메소드

static private QueuePendingRequest ( bool started_internally ) : HttpWorkerRequest
started_internally bool
리턴 HttpWorkerRequest
예제 #1
0
파일: HttpContext.cs 프로젝트: mdae/MonoRT
        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());
        }