Xilium CefGlue - How to get HTML source synchonously?
问题 I want to get source of web page in CEF3/Xilium CefGlue rom non-UI thread (offscreen browser) I do this internal class TestCefLoadHandler : CefLoadHandler { protected override void OnLoadStart(CefBrowser browser, CefFrame frame) { // A single CefBrowser instance can handle multiple requests for a single URL if there are frames (i.e. <FRAME>, <IFRAME>). if (frame.IsMain) { Console.WriteLine("START: {0}", browser.GetMainFrame().Url); } } protected override void OnLoadEnd(CefBrowser browser,