Enum NavigationCacheMode
Namespace: System.Windows.Navigation
Assembly: Controls.Navigation.OpenSilver.dll
Syntax
public enum NavigationCacheMode
Fields
Name | Description |
---|---|
Disabled | The Page should never be cached, and a new instance should be created on each navigation. |
Enabled | The Page should be cached only within the size of the cache on the Frame, and thrown away if it would exceed that. |
Required | The Page should always be cached, and kept around forever, reused in all subsequent navigations to the same Uri. |