CoreWebView2NavigationCompletedEventArgs Class

Definition

Event args for the NavigationCompleted event.

public class CoreWebView2NavigationCompletedEventArgs
public class CoreWebView2NavigationCompletedEventArgs : EventArgs
type CoreWebView2NavigationCompletedEventArgs = class
type CoreWebView2NavigationCompletedEventArgs = class
    inherit EventArgs
Public Class CoreWebView2NavigationCompletedEventArgs
Public Class CoreWebView2NavigationCompletedEventArgs
Inherits EventArgs
Inheritance
CoreWebView2NavigationCompletedEventArgs
Inheritance
CoreWebView2NavigationCompletedEventArgs

Properties

HttpStatusCode

The HTTP status code of the navigation if it involved an HTTP request. For instance, this will usually be 200 if the request was successful, 404 if a page was not found, etc. See https://developer.mozilla.org/docs/Web/HTTP/Status for a list of common status codes.

IsSuccess

true when the navigation is successful; false for a navigation that ended up in an error page (failures due to no network, DNS lookup failure, HTTP server responds with 4xx). Note that WebView2 will report the navigation as 'unsuccessful' if the load for the navigation did not reach the expected completion for any reason. Such reasons include potentially catastrophic issues such network and certificate issues, but can also be the result of intended actions such as the app canceling a navigation or navigating away before the original navigation completed. Applications should not just rely on this flag, but also consider the reported WebErrorStatus to determine whether the failure is indeed catastrophic in their context.

NavigationId

Gets the ID of the navigation.

WebErrorStatus

Gets the error code if the navigation failed.

Applies to