Application.OnNavigationFailed(NavigationFailedEventArgs) Method
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.
Raises the NavigationFailed event.
protected:
virtual void OnNavigationFailed(System::Windows::Navigation::NavigationFailedEventArgs ^ e);
protected virtual void OnNavigationFailed (System.Windows.Navigation.NavigationFailedEventArgs e);
abstract member OnNavigationFailed : System.Windows.Navigation.NavigationFailedEventArgs -> unit
override this.OnNavigationFailed : System.Windows.Navigation.NavigationFailedEventArgs -> unit
Protected Overridable Sub OnNavigationFailed (e As NavigationFailedEventArgs)
Parameters
A NavigationFailedEventArgs that contains the event data.
Examples
Remarks
OnNavigationFailed raises the NavigationFailed event.
A type that derives from Application may override OnNavigationFailed. The overridden method must call OnNavigationFailed in the base class if NavigationFailed needs to be raised.
Applies to
Collaborate with us on GitHub
The source for this content can be found on GitHub, where you can also create and review issues and pull requests. For more information, see our contributor guide.