Is it safe to always assume that HttpContext.Current will be non-null in Application_PreRequestHandlerExecute?

EDIT: Assuming ASP.NET webforms (not MVC).

link|improve this question

feedback

2 Answers

up vote 0 down vote accepted

Yes, unless you're running the code outside of the asp.net pipeline (in unit tests or some such).

The HttpApplication is handed an HttpContext upon creation.

link|improve this answer
feedback

There has to be a current httpcontext object if the app is running.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.