Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想使用定期任务在 Windows Phone 中运行后台代理。正常情况下,后台代理或计划任务会全天执行。
但我想从早上 8 点到晚上 8 点执行任务。有没有办法在 WP8 中完成这个任务。
如果是,请帮助我提示完成操作。提前致谢.....
您可以使用的唯一选项是 ScheduledAgent。
当调用OnInvoke(ScheduledTask task)方法时,只需检查当前时间是否在您感兴趣的范围内(上午 8 点到晚上 8 点)。如果是,请继续进行处理。如果不只是调用NotifyComplete()并返回。