I handle a request begin_request. At the moment i use Response.End() to stop asp.net from doing whatever else. Response.End() throws an exception is there a non exception way i can end the request?
If your wondering why i have no file its bc i tell nginx what file to serve via http response header thus i have nothing else to do in asp.net. Response.End throws an exception which has to collect stack info and all of that. I obviously dont need that and from my past questions i know throwing exceptions are expensive. So how what can i do where?
See Question&Answers more detail:os