James
James

Reputation: 489

Capture http data using System.Windows.Forms.WebBrowser

I'm writing an app with the WebBrowser control and wanted to know how to retrieve the http traffic via the WebBrowser control. post, gets, etc.

Thanks

Upvotes: 2

Views: 1475

Answers (1)

AnthonyWJones
AnthonyWJones

Reputation: 189505

Use the WebClient class or the underlying WebRequest based classes if you need to programmically make requests.

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

Upvotes: 1

Related Questions