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
{{ message }}
This repository was archived by the owner on Dec 26, 2025. It is now read-only.
internal class NavigationStore
{
public string Page { get; set; }
public string Route { get; set; }
public object[] Parameters { get; set; }
}
which is serialized in SessionStorage.
If I change modifier type from public to internal for properties, the properties are not serialized anymore.
Not sure if this behavior could be changed or even should be changed; is just a question.