I am new to Push messages and PushSharp.
I have a list of device ids to which I need to send a push notification message. But I do not want my program to wait on them forever. So I have two small questions:
- Will each call to the
QueueNotification
method of aPushBroker
object eventually lead to aNotificationSent
orNotificationFailed
event? - Can I use the
Tag
property ofGcmNotification
andAppleNotification
objects to store the device id so I will know who the received exactly was?