Event data containing information for the loading events of a WebView.

interface LoadStartedEventData {
    error?: string;
    eventName: LoadStarted;
    navigationType?: NavigationType;
    object: WebViewExtBase;
    url: string;
}

Hierarchy (View Summary)

Properties

error?: string

Gets the error (if any).

eventName: LoadStarted

The name of the event.

navigationType?: NavigationType

Gets the navigation type of the web-view.

The Observable instance that has raised the event.

url: string

Gets the url of the web-view.