Web Scraping with WebBrowser and Single Thread Apartment C#
This is a question about a slight variation on Noseratio's code in this question: [link] How to cancel Task await after a timeout period I am able to build his code exactly as-is to create a Console application that returns the URL and OuterHtml of each of the three web pages specified in the code. However, when I put the same code in a WinForms application, the only output I get is URL: http://example.com That means that the code does not display the OuterHtml of the first page, and it does not display the URL or OuterHtml of either of the other two pages. What I would like to know is what