public void StartSendResponse(HttpResponse response) { LastActivityTimeMS = ContextTimeoutManager.EnvironmentTickCount(); isSendingResponse = true; m_currentResponse = response; ContextTimeoutManager.EnqueueSend(this, response.Priority); }
public void ContinueSendResponse(bool notThrottled) { if (m_currentResponse == null) { return; } ContextTimeoutManager.EnqueueSend(this, m_currentResponse.Priority, notThrottled); }
public void ContinueSendResponse() { if (m_currentResponse == null) { return; } LastActivityTimeMS = ContextTimeoutManager.EnvironmentTickCount(); ContextTimeoutManager.EnqueueSend(this, m_currentResponse.Priority); }