Reputation: 3031
I am a Windows lover and a windows phone developer.
I am developing apps targeting windows phone. Since My latest app needs push notification, I implemented it using WNS [Windows Push Notification Service]. It works well in all devices.
But I am facing a drawback on this because we don't have any extra api service for getting the notification list. So a user can see his notification only by tapping on it in the notification bar. If a user swipe it over means , user can't access it any more.
How this is handled? What technique used in it ? Can we store toast list in background ? Please find the related link How to handle WNS push notifications in Windows Phone 8.1 -silverlight
Thanks
Upvotes: 0
Views: 842
Reputation: 3031
After a wide search I found a solution for handling to store notification data when application is not running by adding Background Service (Windows Runtime Component) Lib
. Then we can user Raw notification
for providing data from the server. Raw notification will work on background task.
reference Windows Phone 8.1 Background task: crashes when debugging
Upvotes: 0