2

以前に尋ねられたかもしれない質問をすることを恐れて、私の検索スキルでは見つけることができませんでした. よし、これで行こう。

アプリがフォアグラウンドで実行されていないときに、TileUpdates と通知を受け取ることができる Windows Phone 8 アプリがあります。これは、 http://msdn.microsoft.com/en-us/library/windowsphone/develop/hh202940( v=vs.105 ).aspx に従って行いました

そのリンクで、アプリの実行中に通知を受け取るには、受信ケースにイベントを添付するだけでよいことを学びました。これは、次のように AcquirePushChannel() 関数で行いました。

public static void AcquirePushChannel()
    {
        CurrentChannel = HttpNotificationChannel.Find("MyPushChannel");


        if (CurrentChannel == null)
        {
            CurrentChannel = new HttpNotificationChannel("MyPushChannel");
            CurrentChannel.Open();
            if (!CurrentChannel.IsShellToastBound)
            {
                CurrentChannel.BindToShellTile();
            }
            CurrentChannel.BindToShellToast();
            CurrentChannel.ShellToastNotificationReceived += new EventHandler<NotificationEventArgs>(Push_NotificationRecieved);

        }
        if (!CurrentChannel.IsShellTileBound)
        {
            CurrentChannel.BindToShellToast();
            CurrentChannel.ShellToastNotificationReceived += new EventHandler<NotificationEventArgs>(Push_NotificationRecieved);
        }

            CurrentChannel.ChannelUriUpdated += new EventHandler<NotificationChannelUriEventArgs>(Push_NotificationChannelChanged);
    }

channelUri が変更された場合に備えて、CurrentChannel.ChannelUriUpdated を実装し、いくつかのコードを実行して、クラウド内の ChannelsTable も変更します。私の Push_NotificationRecieved は次のようになります。

private static void Push_NotificationRecieved(object sender, NotificationEventArgs e)
    {
        StringBuilder message = new StringBuilder();
        string relativeUri = string.Empty;

        message.AppendFormat("Received Toast {0}:\n", DateTime.Now.ToShortTimeString());

        // Parse out the information that was part of the message.
        foreach (string key in e.Collection.Keys)
        {
            message.AppendFormat("{0}: {1}\n", key, e.Collection[key]);

            if (string.Compare(
                key,
                "wp:Param",
                System.Globalization.CultureInfo.InvariantCulture,
                System.Globalization.CompareOptions.IgnoreCase) == 0)
            {
                relativeUri = e.Collection[key];
            }
        }

        // Display a dialog of all the fields in the toast.
        MessageBox.Show(message.ToString());
        //Dispatcher.BeginInvoke((message) => MessageBox.Show(message.ToString()));
    }

通知が登録されていない理由がわかりません。クラウドのログで、トースト通知が受信されたことがわかりましたか?

何か案は?さらに、私が読んだ限りでは、コードまたは同様のものからトーストを表示できますか?

追加

関数を public に変更しようとしましたが、問題は解決しませんでした。イベントが発生しない理由について、誰でもアイデアを持っています。

4

2 に答える 2