如何在Windows Universal App 10中实现PUSH NOTIFICATION?

时间:2016-03-14 05:22:57

标签: push-notification win-universal-app windows-10-universal

这可能是一个重复的问题。但我还没有找到任何解决方案。您能否提供在uwp 10上注册App for PUSH NOTIFICATION的任何示例或示例代码?

需要客户端代码,推送通知类型是服务器到客户端。客户端应注册接收服务器PUSH并处理来自服务器的推送。

2 个答案:

答案 0 :(得分:3)

答案 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();
     ...
}

希望这会有所帮助。