Frame.NavigationFailed Event
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
public:
virtual event NavigationFailedEventHandler ^ NavigationFailed;
// Register
event_token NavigationFailed(NavigationFailedEventHandler const& handler) const;
// Revoke with event_token
void NavigationFailed(event_token const* cookie) const;
// Revoke with event_revoker
Frame::NavigationFailed_revoker NavigationFailed(auto_revoke_t, NavigationFailedEventHandler const& handler) const;
public event NavigationFailedEventHandler NavigationFailed;
function onNavigationFailed(eventArgs) { /* Your code */ }
frame.addEventListener("navigationfailed", onNavigationFailed);
frame.removeEventListener("navigationfailed", onNavigationFailed);
- or -
frame.onnavigationfailed = onNavigationFailed;
Public Custom Event NavigationFailed As NavigationFailedEventHandler