Motivation : - I want to send a notification about Toast and Tile at the same time to my Windows Phone 8.1 application.
=> I use the template function with the notification center to send localized notifications.
Everything works fine When I register only Toast / Tile templates (one at a time) with Notificationhub Client.
await _hubClient.CreateWindowsTemplateRegistrationAsync(model.ChannelUri, toasttemplate, tags);
Problem: - But when I register both Toast and Tile templates with a hub, then in this case it cannot send both notifications. No error indication.
So, does anyone know how to register and send both notifications at the same time? Any pointer or help is really appreciated.
source
share