I need to prevent WebBrowser.Navigate() run on the same thread because I need the process to be certain order.
I came across Async/Await implementation of WebBrowser class for .NET which uses async/await implementation but I have to use .net 3.5 which doesn't support it.
Anyone know of any alternative methods?