I have an HttpModule that has bound an event handler to an EndRequest.
Is there a way to handle the request inside the event handler? Meaning, I do not just want to run the code and keep the request moving - I want to stop it dead on my tracks, return the status code 200 and call it day, without asking it to continue the next step in the pipelines.
source
share