I would like to read all content that's been written to the output stream. I'm attempting to do this using an HTTP module, and it seems like the obvious timing would be when handling the PreSendRequestContent event.

However, if the output stream seems to be set to write-only, as I can't read using a StreamReader. Is there a way I read and re-write the content without writing my own IIS module?

link|improve this question

feedback

1 Answer

up vote 2 down vote accepted

Look at the HttpResponse.Filter property.

link|improve this answer
Nice. Not sure how I didn't notice that there :D – Daniel Schaffer Feb 22 '10 at 1:14
@Daniel: I've never seen it actually used, but remembered seeing it in the documentation. – John Saunders Feb 22 '10 at 1:14
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.