Capturing all requests and responses from the web browser control?
问题 Is there way to capture and print out all of the requests and responses from the web browser control including asynchronous requests? 回答1: Have you thought about using Fiddler? They even have an API that you might be able to use for this. Edit You can try using the Navigated event or LoadCompleted event for getting response information. You might be able to use the Navigating event for request information. These events might occur with async requests, but I'm not sure on that. The Edit