I'm almost sure it does but I just need to make sure. I don't want my app to be executing another method at the same time DocumentCompleted is being called.
views:
15answers:
1
+1
A:
No, it is raised on the thread that created the WebBrowser, the one that's also pumping the message loop that keeps events on WebBrowser alive. Calling Navigate() from a worker thread is technically possible but unwise if you want to keep your ducks in a row.
Hans Passant
2010-09-22 18:27:26