I need to access Session variables on Session_End event in global.asax.cs, but HttpContext.Current is null, so none of the session variables are accessible.
a) Can I access user session somehow differently, or
b) Is there any other event jut before Session_End, I could access user’s session variables?
HttpContext.Currentis not available inside ofSession_End, but you can access the session instance directly withthis.Session.