I am using Background task to perform activity when application is not running. Below is my sample code that should be called every 30 mins and add the timestamp to the file on Isolated Storage. The problem is that, background task (OnInvoke event) is called only at the time I am adding it (ScheduledActionService.Add(periodicTask);). It is not called every 30 mins.
protected override void OnInvoke(ScheduledTask task)
{
using (IsolatedStorageFile myIsolatedStorage = IsolatedStorageFile.GetUserStoreForApplication())
{
if (myIsolatedStorage.FileExists("testbg.txt"))
{
EditExistingFile("testbg.txt", DateTime.Now.ToString() + Environment.NewLine);
}
else
{
CreateNewFile("testbg.txt", DateTime.Now.ToString() + Environment.NewLine);
}
}
NotifyComplete();
}
public static void StartBackgroundTask()
{
PeriodicTask periodicTask = new PeriodicTask("Project One Tasks");
// The description is required. This is the string that the user
// will see in the background services Settings page on the device.
periodicTask.Description = "Performs various activities related to Project One.";
periodicTask.ExpirationTime = DateTime.Now.AddDays(10);
// If the agent is already registered with the system,
// call the StopPeriodicAgent helper method.
if (ScheduledActionService.Find(periodicTask.Name) != null)
{
StopBackgroundTask();
}
ScheduledActionService.Add(periodicTask);
}
Edit:
One thing I noticed, when I start Periodic or ResourceIntensive Task, I get following dialog:
Microsoft Visual Studio 2010 Express for Windows Phone
The remote connection to the device has been lost. Please verify the device connection and restart debugging.
OK
Anyone getting this message when Tasks are called?