I'm developing an app for Windows Phone. This app uses background agent (scheduled task).
The main app stores some settings with help of IsolatedStorageSettings.ApplicationSettings. And background agent sometimes can only read values from settings.
The question is should I use Mutex to synchronize operations on IsolatedStorageSettings between the main app and the background agent? Or this is not needed in my scenario?