我正在与Xamarin UWP以及Azure通知中心一起发送推送通知。我有吐司通知显示正常,但当我点击吐司时,我需要能够查看该消息。触摸通知时,我可以通过OnLaunched方法显示一条消息,如下所示:
string text = string.Format("Launched with parameter: " + args.ToString());
MessageDialog dialog = new MessageDialog(text);
await dialog.ShowAsync();
我无法弄清楚如何检索从Toast通知发送的邮件。
答案 0 :(得分:0)
我最终在启动参数中设置我的文本以在OnActivated
中接收它