From the remarks section of IsolatedStorageSettings.Save Method page:
Data written to the IsolatedStorageSettings object is saved when the application that uses the class is closed. This can occur when the user closes the Web browser, refreshes a page, or browses away from the page. If you want your application to write to isolated storage immediately, you can call the Save method in application code.
So, I can never call the Save
method and every setting will be in safety. I'm just curious in what usecases should I use the Save
method?