使用.Net中的Push Sharp向Apple推送通知发送批量通知

时间:2016-02-15 10:21:14

标签: c# .net push-notification apple-push-notifications pushsharp

我们可以向.Net中的Push Sharp Apple Notification Service发送批量通知吗?如果我想将类似的消息发送到多个设备,我该如何在.net中发送。我知道如何发送到单个设备,但要求是发送到多个设备

1 个答案:

答案 0 :(得分:1)

是的!这是可能的,只是不要在一个通知上设置多个设备令牌。您需要将每个设备都安装到QueueNotification。 Loop只是将这些设备添加到队列中,它会批量发送通知。

public ModelName GetDetails(int client_id,int emp_id,int empcitizen_id)
{
  ModelName del = (from c in db.ModelName where c.clientid == client_id && c.employeeid == emp_id && c.empcitizenid == empcitizen_id select c).ToList();
    return del;
}

希望这有帮助!