Reputation: 2516
I'm porting a Windows Phone 8.0 app to a universal store app. I used the state dictionary frequently to pass state info between pages. I know the new navigation service has support for a parameter, but I was looking for something that can store state outside the scope of the page. Does anyone know the "universal app way" of keeping state information in the scope of the app?
Upvotes: 0
Views: 1151
Reputation: 76
The replacement is the SuspensionManager.
You can use SuspensionManager.SessionState instead of PhoneApplicationService.Current.State
Upvotes: 1