JamesBrownIsDead
JamesBrownIsDead

Reputation: 83

ASP.NET: HttpModule

How can I check what content has been sent by or buffered into a Response in my HttpModule?

Upvotes: 0

Views: 329

Answers (1)

Michael Baldry
Michael Baldry

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

Related Questions