public NotificationPayload(string deviceToken, string alert, int badge) { DeviceToken = deviceToken; Alert = new NotificationAlert() { Body = alert }; Badge = badge; CustomItems = new Dictionary<string, object[]>(); }
public NotificationPayload(string deviceToken, string alert) { DeviceToken = deviceToken; Alert = new NotificationAlert() { Body = alert }; CustomItems = new Dictionary <string, object[]>(); }
public NotificationPayload(string deviceToken, string alert, int badge, string sound, int content_available) { DeviceToken = deviceToken; Alert = new NotificationAlert() { Body = alert }; Badge = badge; Sound = sound; Content_available = content_available; CustomItems = new Dictionary<string, object[]>(); }
public NotificationPayload(string deviceToken, string alert, int badge, string sound) { DeviceToken = deviceToken; Alert = new NotificationAlert() { Body = alert }; Badge = badge; Sound = sound; CustomItems = new Dictionary <string, object[]>(); }
public NotificationPayload(string deviceToken) { DeviceToken = deviceToken; Alert = new NotificationAlert(); CustomItems = new Dictionary<string, object[]>(); }