private string GetHTMLFromWebBrowser()
{
// Get the html source code from the main Frame.
// This is displaying only code in the main frame and not any child frames of it.
Task<String> taskHtml = browser.GetBrowser().MainFrame.GetSourceAsync();
string response = taskHtml.Result;
return response;
}
private void WebBrowserFrameLoadEnded(object sender, FrameLoadEndEventArgs e)
{
html = GetHTMLFromWebBrowser();
Типо дальше html = ничего не выполняется.
Через debigger посмотрел, останавливается на string response = taskHtml.Result;