B
bonesbro
How confident can I be that OnEndRequest() will always be called from
my custom IHttpModule? It looks like it's called when I
Response.Redirect() or Response.End(). What if ASP.NET kills the
thread (by raising a ThreadAbortException) due to timeout?
I assume, but am not certain, that I can't expect it to get called if
the machine is IISRESET. Short of that exceptional circumstance, is
there any other way that a request which has
IHttpModule.OnBeginRequest() called will not end in an OnEndRequest()?
my custom IHttpModule? It looks like it's called when I
Response.Redirect() or Response.End(). What if ASP.NET kills the
thread (by raising a ThreadAbortException) due to timeout?
I assume, but am not certain, that I can't expect it to get called if
the machine is IISRESET. Short of that exceptional circumstance, is
there any other way that a request which has
IHttpModule.OnBeginRequest() called will not end in an OnEndRequest()?