Raman Sharma
Raman Sharma

Reputation: 4571

IsolatedStorageSettings ApplicationSettings for Windows Phone app 8 updates

Are the settings stored by a Windows Phone 8 app saved when the app gets updated through AppStore?

Upvotes: 3

Views: 1858

Answers (1)

Spaso Lazarevic
Spaso Lazarevic

Reputation: 906

IsolatedStorageSettings provide a convenient way to store user specific data as key-value pairs in a local IsolatedStorageFile with an lifespan of the application. You can find more about IsolatedStorageSettings Class.

So the answer is that Windows Phone app will save any data saved after app update. If you uninstall app you lose all your data from IsolatedStorageSettings.

Upvotes: 4

Related Questions