Example #1
0
 public static PushPayload MessageAll(string msgContent)
 {
     return(new PushPayload(Platform.all(), Audience.all(), (Notification)null, Message.content(msgContent), (SmsMessage)null, new Options()));
 }
Example #2
0
 public static PushPayload AlertAll(string alert)
 {
     return(new PushPayload(Platform.all(), Audience.all(), new Notification().setAlert(alert), (Message)null, (SmsMessage)null, new Options()));
 }