NavigationMode Enum
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Specifies the type of navigation that is taking place NavigationMode is used by the NavigationMode property.
public enum class NavigationMode
public enum NavigationMode
type NavigationMode =
Public Enum NavigationMode
- Inheritance
Fields
Name | Value | Description |
---|---|---|
New | 0 | Navigating to new content. This occurs when the Navigate method is called, or when Source property is set. |
Back | 1 | Navigating back to the most recent content in back navigation history. This occurs when the GoBack method is called. |
Forward | 2 | Navigating to the most recent content on forward navigation history. This occurs when the GoForward method is called. |
Refresh | 3 | Reloading the current content. This occurs when the Refresh method is called. |