Hi All,
I'm new to CefSharp. On a web page loaded, when user clicks a link embedded, to microsoft IE control, I was able to monitor "Navigating(object sender, WebBrowserNavigatingEventArgs e)". Then I can decide if I want the navigation continue. How can I do that with Cefsharp 3?
I assumed "OnBeforeBrowse" was for it, but it's commented out.
// TODO: Check how we can support this with CEF3.
/*
bool ClientAdapter::OnBeforeBrowse(CefRefPtr<CefBrowser> browser, CefRefPtr<CefFrame> frame, CefRefPtr<CefRequest> request, NavType navType, bool isRedirect)
{
Thanks,
Jerry