ChromiumWebBrowserConsoleMessage Event |
Version 87.1.132
Event handler for receiving Javascript console messages being sent from web pages.
It's important to note this event is fired on a CEF UI thread, which by default is not the same as your application UI
thread. It is unwise to block on this thread for any length of time as your browser will become unresponsive and/or hang..
To access UI elements you'll need to Invoke/Dispatch onto the UI Thread.
(The exception to this is when you're running with settings.MultiThreadedMessageLoop = false, then they'll be the same thread).
Namespace:
CefSharp.WinForms
Assembly:
CefSharp.WinForms (in CefSharp.WinForms.dll) Version: 87.1.132.0 (87.1.132.0)
Syntax public event EventHandler<ConsoleMessageEventArgs> ConsoleMessage
public:
virtual event EventHandler<ConsoleMessageEventArgs^>^ ConsoleMessage {
void add (EventHandler<ConsoleMessageEventArgs^>^ value);
void remove (EventHandler<ConsoleMessageEventArgs^>^ value);
}
Value
Type:
SystemEventHandlerConsoleMessageEventArgsImplements
IWebBrowserConsoleMessageSee Also