コーディングの下で、メインアプリと定期的なタスクの間でデータを共有するで見つけましたが、機能せず、エラーが発生します。
何かアイデアや助けはありますか?
メインページで
using System.IO.IsolatedStorage;
using System.Threading;
using (Mutex mutex = new Mutex(true, "MyData"))
{
mutex.WaitOne();
try
{
IsolatedStorageSettings.ApplicationSettings["order"] = 5;
}
finally
{
mutex.ReleaseMutex();
}
}
そしてエージェントで:
using (Mutex mutex = new Mutex(true, "MyData"))
{
mutex.WaitOne();
try
{
order = (int)IsolatedStorageSettings.ApplicationSettings["order"];
}
finally
{
mutex.ReleaseMutex();
}
}