IWebViewControl.NavigationStarting Event

Definition

Occurs before the IWebViewControl navigates to new content.

// Register
event_token NavigationStarting(TypedEventHandler<IWebViewControl, WebViewControlNavigationStartingEventArgs const&> const& handler) const;

// Revoke with event_token
void NavigationStarting(event_token const* cookie) const;

// Revoke with event_revoker
IWebViewControl::NavigationStarting_revoker NavigationStarting(auto_revoke_t, TypedEventHandler<IWebViewControl, WebViewControlNavigationStartingEventArgs const&> const& handler) const;
event TypedEventHandler<IWebViewControl,WebViewControlNavigationStartingEventArgs> NavigationStarting;
function onNavigationStarting(eventArgs) { /* Your code */ }
iWebViewControl.addEventListener("navigationstarting", onNavigationStarting);
iWebViewControl.removeEventListener("navigationstarting", onNavigationStarting);
- or -
iWebViewControl.onnavigationstarting = onNavigationStarting;
Event NavigationStarting As TypedEventHandler(Of IWebViewControl, WebViewControlNavigationStartingEventArgs) 

Event Type

Remarks

WebView navigation events occur in the following order:

Similar events occur in the same order for each iframe in the WebView content:

Applies to