こんにちは、私はこのプッシュ通知リンクをたどっており、それを実装することができます。それは機能していますが、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();
}
}