NavigationFailedEventArgs.Handled Property

Definition

Gets or sets whether the failed navigation exception has been handled.

public:
 property bool Handled { bool get(); void set(bool value); };
public bool Handled { get; set; }
member this.Handled : bool with get, set
Public Property Handled As Boolean

Property Value

true if the exception is handled; otherwise, false (default).

Remarks

When you handle NavigationFailed to process an exception that is thrown as a result of a failed navigation, and you don't want WPF to continue processing the exception, you should set the Handled property to true.

Applies to