I am developing an application for Windows Phone. This application uses a background agent (scheduled task).
The main application stores some settings using IsolatedStorageSettings.ApplicationSettings . A background agent can sometimes only read values ββfrom settings.
The question is, should I use Mutex to synchronize operations on IsolatedStorageSettings between the main application and the background agent? Or is it not needed in my script?
source share