Can someone point me in the right direction for implementing proxy-like behavior with C#?
I'm looking to catch HTTP
requests from a site, parse, then modify the DOM
and show the results. Ideally, this program would run as a proxy on the local machine, but I'm fine with implementing a custom "browser" if needed.
Any suggestions?