0

Now we can handle Raw and Toast notification revcieved event via:

        _httpChannel.HttpNotificationReceived += new EventHandler<HttpNotificationEventArgs>(httpChannel_HttpNotificationReceived);
        _httpChannel.ShellToastNotificationReceived += new EventHandler<HttpNotificationEventArgs>(httpChannel_HttpNotificationReceived);ere

But there is no event for Tile recieved. How to handle the Tile Recieved?

Thanks!

Eran
  • 387,369
  • 54
  • 702
  • 768
airbai
  • 3,906
  • 5
  • 26
  • 30
  • The purpose for Tile notifications is to update an app tile. Why do you need to handle a Tile notification? http://stackoverflow.com/questions/17317959/wp8handle-toast-notification-when-application-is-in-backgroung/17319031#17319031 – Pavel Saniuk Jul 08 '13 at 07:57

1 Answers1

1

There is no way to handle or be informed of a tile notification being received.

Matt Lacey
  • 65,560
  • 11
  • 91
  • 143
  • Agree. As a workaround, I ever considered to use send Raw Notification instead, and then update the Tile in event handler HttpNotificationReceived; but device can only recieve Raw Notification when app is in foreground, give up. – airbai Jul 09 '13 at 02:12