You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
/// Indicates a navigation that is reloading the current document.
77
-
/// For example, a navigation caused by `CoreWebView2.Reload()` or in script `window.history.go()`.
76
+
/// A navigation caused by CoreWebView2.Reload(), location.reload(), the end user using F5 or other UX, or other reload mechanisms to reload the current document without modifying the navigation history.
78
77
COREWEBVIEW2_NAVIGATION_KIND_RELOAD,
79
-
/// Indicates a navigation that is going back or forward in the navigation history.
80
-
/// For example, a navigation caused by `CoreWebView2.GoBack()/Forward()` or in script `window.history.go(-1)/go(1)`.
78
+
/// A navigation back or forward to a different entry in the session navigation history. For example via CoreWebView2.Back(), location.back(), the end user pressing Alt+Left or other UX, or other mechanisms to navigate forward or backward in the current session navigation history.
81
79
COREWEBVIEW2_NAVIGATION_KIND_BACKORFORWARD,
82
-
/// Indicates a navigation that is navigating to a different document.
83
-
/// For example, a navigation caused by `CoreWebView2.Navigate()`, or a link click.
80
+
/// A navigation to a different document. This can be caused by CoreWebView2.Navigate(), window.location.href = '...', or other WebView2 or DOM APIs that navigate to a specific URI.
0 commit comments