1

我正在创建通知渠道:

HttpNotificationChannel channel = new HttpNotificationChannel("MyPushChannel");  
channel.ShellToastNotificationReceived += channel_ShellToastNotificationReceived;  
channel.ChannelUriUpdated += channel_ChannelUriUpdated;  
channel.Open();  
channel.BindToShellToast();  

现在 HttpNotificationChannel.Find("MyPushChannel") 为我提供了我创建的推送通道,即使在我重新启动应用程序之后也是如此。

但是,每次手机重启后,该方法都会返回null。

正常吗?每次手机重启后我都需要重新创建我的推送通道吗?

4

0 回答 0