Table of Contents
WebView.ConsoleMessage Event

Occurs when the web page outputs a console message.

Syntax
 public event ConsoleMessageHandler ConsoleMessage;
Event Data

The event handler receives an argument of type ConsoleMessageEventArgs containing data related to this event. The following ConsoleMessageEventArgs properties provide information specific to this event.

Name Description
LineNumber The line number where the code outputs message.
Message The message to be outputed to the console.
Severity Gets the severity of the message.
Source The source Url.
Type Gets the message type.
See Also