I'm running some code in the Application_Start
block within my global.asax and I'm looking for a way in which I can determine if the app is running locally so I can conditionally execute the code.
Normally I'd use something like this, but there is no httpcontext
in the global.asax:
if (Request.IsLocal == true) {
//run the code...
}
Is there another way in which I can determine if the app is running locally? Debug
would always be set to true
on the localhost, so perhaps that will give me some handle I can use?
EDIT 13th Dec
I should have clarified BeginRequest
is not a suitable candidate here as the code being executed is writing a number of files to the local directory and this shouldn't be repeated on every request.
This one is specifically to your question about determining debug from web.config:
I think you would also need to cast that appropriately. Just off the hand.
Yup. You got to cast it to
System.Web.Configuration.CompilationSection
.