Capturing HTTP data with System.Windows.Forms.WebBrowser

I am writing an application using a WebBrowser control and wanted to know how to get HTTP traffic through the WebBrowser control. message, receives, etc.

thank

+2


source to share


1 answer


Use the WebClient class or WebRequest-based base classes if you need to program your requests.



If you are interested in monitoring it for debugging purposes, get fiddler , which is a free HTTP proxy.

+1


source







All Articles