如何在Xamarin UWP应用程序中检索Toast通知消息?

时间:2016-06-01 13:25:49

标签: azure xamarin notifications uwp toast

我正在与Xamarin UWP以及Azure通知中心一起发送推送通知。我有吐司通知显示正常,但当我点击吐司时,我需要能够查看该消息。触摸通知时,我可以通过OnLaunched方法显示一条消息,如下所示:

     string text = string.Format("Launched with parameter: " + args.ToString());
     MessageDialog dialog = new MessageDialog(text);
     await dialog.ShowAsync();

我无法弄清楚如何检索从Toast通知发送的邮件。

1 个答案:

答案 0 :(得分:0)

我最终在启动参数中设置我的文本以在OnActivated

中接收它