Reputation: 83
How can I check what content has been sent by or buffered into a Response in my HttpModule?
Upvotes: 0
Views: 329
Reputation: 792
You look directly at the Response.OutputStream property maybe. If you wanted to actually modify the output, the best thing would be to write an implementation of stream and set it to Response.Filter
Good luck
Upvotes: 5