I'm running under IIS 6.
I've got an HttpHandler that handles requests for a particular file extension (let's call the extension .foo).
My Application_BeginRequest handler in Global.asax.cs performs an operation that I don't want to happen in response to .foo requests.
I know that within the Application_BeginRequest handler I could conditionally execute the operation based on HttpContext.Current.Path (or something like that) but I would prefer not to muddy the Global.asax.cs file's logic with details it shouldn't need to know about.
I would prefer to have the .foo file's HttpHandler always skip the Application_BeginRequest handler.
Thanks!