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
/// 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.
76
+
/// A navigation caused by CoreWebView2.Reload(), location.reload(), the end user
77
+
/// using F5 or other UX, or other reload mechanisms to reload the current document
78
+
/// without modifying the navigation history.
77
79
COREWEBVIEW2_NAVIGATION_KIND_RELOAD,
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.
79
-
COREWEBVIEW2_NAVIGATION_KIND_BACKORFORWARD,
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.
81
-
COREWEBVIEW2_NAVIGATION_KIND_DIFFERENT,
80
+
/// A navigation back or forward to a different entry in the session navigation history.
81
+
/// For example via CoreWebView2.Back(), location.back(), the end user pressing Alt+Left
82
+
/// or other UX, or other mechanisms to navigate forward or backward in the current
83
+
/// session navigation history.
84
+
COREWEBVIEW2_NAVIGATION_KIND_BACK_OR_FORWARD,
85
+
/// A navigation to a different document. This can be caused by CoreWebView2.Navigate(),
86
+
/// window.location.href = '...', or other WebView2 or DOM APIs that navigate to a specific URI.
87
+
COREWEBVIEW2_NAVIGATION_KIND_DIFFERENT_DOCUMENT,
82
88
} COREWEBVIEW2_NAVIGATION_KIND;
83
89
84
90
/// Extend `NavigationStartingEventArgs` by adding more information.
0 commit comments