Table of Contents
WebView.LoadFailed Event

Occurs when a page has failed to load.

Syntax
 public event LoadFailedEventHandler LoadFailed;
Event Data

The event handler receives an argument of type LoadFailedEventArgs containing data related to this event. The following LoadFailedEventArgs properties provide information specific to this event.

Name Description
ErrorCode Gets the error code.
ErrorMessage Gets or sets the error message.
HttpStatusCodeGets the HTTP status code.
IsLastTask Gets a value indicating whether this was the last task of the WebView.
ShouldShowError Gets or sets whether the error message should be displayed.
TaskGets the NavigationTask object associated to this event.
UrlGets the Url of the loaded page.
See Also