UWP应用中直接调用后台任务

Directly calling background task in UWP app

我正在准备新的微软认证考试Universal Windows Platform – App Data, Services, and Coding Patterns

是否可以直接从Windows10(UniversalWIndows)app调用后台任务?据我所知,只有像SystemTrigger这样的触发器或者TimerTrigger可以触发后台任务的执行

在 link 的技能测量部分是:

Implement background tasks

Create a background task, register a background task, set and respond to triggers, debug a background task, implement a lock screen app, share data/events between an app and its background tasks; directly calling a background task

最后一点,直接调用后台任务,什么意思?

我认为应该是 ApplicationTrigger class。

看这里: https://msdn.microsoft.com/en-us/library/windows/apps/windows.applicationmodel.background.applicationtrigger.aspx

顺便说一句,这是 UWP 中的新功能。在 A Windows (Phone) Store 8.1 应用程序中,无法直接从应用程序触发后台任务。