适用于Windows的通用应用10.如何触发后台任务?

时间:2015-11-20 20:20:39

标签: c# notifications win-universal-app background-task

我需要通过按动作按钮从交互式Toast通知中触发后台任务。我不知道我做错了什么。我可以注册一个任务,并在visual studio中查看它。即使我可以调试它(debuger跳转到MyToastNotificationBackgroundTask.Run函数,但参数IBackgroundTaskInstance taskInstance是空对象),单击一个按钮永远不会运行任务或至少debuger不显示它。

我正在注册这样的后台任务

var builder = new BackgroundTaskBuilder();
builder.Name = "MyToastNotificationBackgroundTask";
builder.TaskEntryPoint = "Tasks.MyToastNotificationBackgroundTask";
builder.SetTrigger(new ToastNotificationActionTrigger());
BackgroundTaskRegistration task = builder.Register();

显示通知

ToastNotifier toastNotifier = ToastNotificationManager.CreateToastNotifier();
ScheduledToastNotification myToastNotificaton = new ScheduledToastNotification(this.myToastXml, DateTime.Now.AddMinutes(1), TimeSpan.FromMinutes(60), 2);
myToastNotificaton .Id = "toast_54ahk36s";
toastNotifier.AddToSchedule(myToastNotificaton);
在应用清单中

<Extensions>
    <Extension Category="windows.backgroundTasks" EntryPoint="Tasks.MyToastNotificationBackgroundTask">
      <BackgroundTasks>
        <Task Type="systemEvent" />
      </BackgroundTasks>
    </Extension>
</Extensions>

在toast模板中,xml操作按钮是

<actions>
    <input id="message" type="text" placeholderContent="200" />
    <action activationType="background" content="Count" arguments="count" />
</actions>

后台任务itsetf

namespace Tasks
{
    public sealed class MyToastNotificationBackgroundTask : IBackgroundTask
    {
        public void Run(IBackgroundTaskInstance taskInstance)
        {
            var details = taskInstance.TriggerDetails as ToastNotificationActionTriggerDetail;
            ...
        }
    }
}

我无法理解如何在通知模板操作按钮上指定activationype =“background”与MyToastNotificationBackgroundTask任务相关?我无法找到相关信息。

有人请分享你的知识。也许你有一个工作的例子或smf。任何帮助将不胜感激。提前谢谢。

1 个答案:

答案 0 :(得分:1)

  

我无法理解如何指定activationype =&#34; background&#34;在...上   通知模板操作按钮与之相关   MyToastNotificationBackgroundTask任务?我无法找到相关信息   这一点。

后台任务的触发器类型(ToastNotificationActionTrigger)是将Toast操作连接到后台任务的内容。当用户点击操作时,app会查找ToastNotificationActionTrigger触发器的后台任务,如果找到则会运行。

我使用了你的代码,但无法重现问题,触发器工作正常。我的猜测是你已经注册了一个具有该名称但没有正确触发器类型的任务(先尝试取消注册) - 或者 - 你在toast xml(activationType字段)中有拼写问题。