如何设置后台代理在Windows Phone应用程序中运行的时间间隔?

时间:2013-04-26 22:49:54

标签: c# windows-phone-8

我似乎无法找到有关Windows Phone后台代理的基本信息 - 如何实际设置运行时间间隔的内容?

无论是计划任务还是资源密集型任务,我唯一看到与时间间隔相关的地方就是在调试器中将其称为测试时:

// If debugging is enabled, launch the agent again in one minute.
#if DEBUG_AGENT
  ScheduledActionService.LaunchForTest(task.Name, TimeSpan.FromSeconds(60));
#endif

...但我实际上并没有看到常规的,release-build等价物的位置。

后台代理是否可以通过这种方式安排发布版本?

0 个答案:

没有答案