Dlaczego zdarzenie Session_End nie zostało podniesione, gdy StateProvider nie jest InProc?

Zadaję to pytanie z ciekawości.

Zauważyłem to w moim global.asax

<code>void Session_End(object sender, EventArgs e)
{
    // Code that runs when a session ends. 
    // Note: The Session_End event is raised only when the sessionstate mode
    // is set to InProc in the Web.config file. If session mode is set to StateServer 
    // or SQLServer, the event is not raised.
}
</code>

Chcę zrozumieć, dlaczego zdarzenie Session_End nie jest przechwytywane / wywoływane, gdy tryb sesji jest StateServer lub SQLServer?

questionAnswers(2)

yourAnswerToTheQuestion