public class BrowserNavigationErrorEvent extends GuiEvent:
Describes a browser navigation failure.
browser.navigationFailed += lambda(event: BrowserNavigationErrorEvent): print(event.message)
| Modifier and Type | Member | Description |
|---|---|---|
| public readonly property | messagemessage as String |
Human-readable failure description. |
| public readonly property | statusCodestatusCode as Int |
HTTP status code, or 0 for non-HTTP failures. |
| public readonly property | urlurl as String |
URL that could not be loaded. |
| Modifier and Type | Member | Description |
|---|---|---|
| public | BrowserNavigationErrorEventBrowserNavigationErrorEvent(source as Object, url as String, message as String, statusCode as Int = 0): |
Creates a browser navigation error event. |