大家好我试图用系统触发事件(对于短信)连接我的后台任务但是我不能这样做也许我仍然是noob程序员但是它甚至可以用于连接带有bacground代理的传入短信的系统触发器用于Windows Phone 8 ?
protected override void OnInvoke(ScheduledTask task)
{
string toastMessage = "";
if (task is PeriodicTask)
{
toastMessage = "Periodic task running.";
}
else
{
toastMessage = "Resource-intensive task running.";
}
ShellToast toast = new ShellToast();
toast.Title = "Background Agent Sample";
toast.Content = toastMessage;
toast.Show();
NotifyComplete();
}