朋友您好我正在关注此Push notification link并能够实施它。它正在工作但我试图将CurrentChannel名称从MyPushChannel更改为Channeltest然后它无法创建新的频道并抛出invalidOperation类型的异常你们请解释我为什么它发生在这里是代码..
private void AcquirePushChannel()
{
CurrentChannel = HttpNotificationChannel.Find("Channeltest");
if (CurrentChannel == null)
{
CurrentChannel = new HttpNotificationChannel("Channeltest");
CurrentChannel.Open(); // exception comming here
CurrentChannel.BindToShellTile();
}
}
答案 0 :(得分:1)
在Windows Phone中,每个应用程序对一个推送通道有限制。如果要更改名称,请从设备/模拟器中卸载应用程序并再次进行部署。它应该工作。