0
votes
2answers
68 views
What part of the ASP.Net framework do you use to execute arbitrary code on every inbound request to IIS?
I'd like to run a discrete chunk of .Net code for each and every request that comes through a certain Web site in IIS. This is completely isolated code -- it doesn't affect anything before or afte …
0
votes
1answer
47 views
Is there an event in the request pipeline where both Request and Response are available and populated?
I need to bind to an event in the request pipeline where both the Request and Response are populated. The Request is simple, but I need the StatusCode off the Response object. At what point in th …
0
votes
1answer
53 views
Can a request be handled and ended prematurely, early in the pipeline?
I have an HttpModule that has bound an event handler to EndRequest.
Is there any way to handle the request inside the event handler? Meaning, I don't just want to run code and keep the req …
0
votes
1answer
75 views
How do you persist data from one HTTP module to another and to the eventual handler?
From an HTTP module, is there a way to persist something in the Request to be accessed by a mater module or the eventual handler? Can you "stick" something on the Request as it passes through that …
1
vote
1answer
278 views
Why don’t PreSendRequestHeaders and PreSendRequestContent run consistently?
When working with HTTP modules, has anyone noticed that the final two events in the pipeline -- PreSendRequestHeaders and PreSendRequestContent -- don't always run?
I've verified that code …
