这可能是一个重复的问题。但我还没有找到任何解决方案。您能否提供在uwp 10上注册App for PUSH NOTIFICATION的任何示例或示例代码?
需要客户端代码,推送通知类型是服务器到客户端。客户端应注册接收服务器PUSH并处理来自服务器的推送。
答案 0 :(得分:3)
以下是localpush的链接:http://blogs.msdn.com/b/tiles_and_toasts/archive/2015/10/05/sending-a-local-tile-notification-in-windows-10.aspx
有关从服务器工作的推送通知,请阅读https://msdn.microsoft.com/en-us/windows/uwp/controls-and-patterns/tiles-and-notifications-windows-push-notification-services--wns--overview
答案 1 :(得分:1)
我已实施推送通知。所以,它可以帮助某人。 在App.xaml.cs中添加一个新方法:
private async Task InitNotificationsAsync()
{
// Get a channel URI from WNS.
var channel = await PushNotificationChannelManager
.CreatePushNotificationChannelForApplicationAsync();
channel.PushNotificationReceived += Channel_PushNotificationReceived;
}
在OnLaunched
方法中调用此方法:
protected async override void OnLaunched(LaunchActivatedEventArgs e)
{
await InitNotificationsAsync();
...
}
希望这会有所帮助。