Windows phone 8 Windows Phone 8推送通知::我可以将同一推送频道绑定到Toast和Tile吗

Windows phone 8 Windows Phone 8推送通知::我可以将同一推送频道绑定到Toast和Tile吗,windows-phone-8,Windows Phone 8,以下是WP8推送通知的代码 HttpNotificationChannel pushChannel = new HttpNotificationChannel(channelName); // Register for all the events before attempting to open the channel. pushChannel.ChannelUriUpdated += new EventHandler<

以下是WP8推送通知的代码

HttpNotificationChannel pushChannel = new HttpNotificationChannel(channelName);

                // Register for all the events before attempting to open the channel.
                pushChannel.ChannelUriUpdated += new EventHandler<NotificationChannelUriEventArgs>(PushChannel_ChannelUriUpdated);
                pushChannel.ErrorOccurred += new EventHandler<NotificationChannelErrorEventArgs>(PushChannel_ErrorOccurred);

                // Register for this notification only if you need to receive the notifications while your application is running.
                pushChannel.ShellToastNotificationReceived += new EventHandler<NotificationEventArgs>(PushChannel_ShellToastNotificationReceived);

                pushChannel.Open();

                // Bind this new channel for toast events.
                pushChannel.BindToShellToast();
                pushChannel.BindToShellTile();
HttpNotificationChannel pushChannel=新的HttpNotificationChannel(channelName);
//在尝试打开通道之前注册所有事件。
pushChannel.ChannelUriUpdated+=新事件处理程序(pushChannel\u ChannelUriUpdated);
pushChannel.ErrorOccursed+=新的事件处理程序(pushChannel\u ErrorOccursed);
//仅当您需要在应用程序运行时接收通知时,才注册此通知。
pushChannel.ShellToastNotificationReceived+=新事件处理程序(pushChannel\u ShellToastNotificationReceived);
pushChannel.Open();
//为toast事件绑定此新频道。
pushChannel.BindToShellToast();
pushChannel.BindToShellTile();
正如您在上面的代码中看到的,我正在将pushChannel绑定到shellToast以及shellTile。我想知道它是否有效?因为我在msdn上没有关于这个的任何文件如果可能,并且服务器发送了任何通知,是否会正确显示?
请就此给出宝贵的反馈。

这是可能的,也是正确的方法。一个应用,一个频道,不管你使用多少种推送通知