示例#1
0
 public Payload(PayloadAlertMessage alert, int badge, string sound, IDictionary <string, object[]> customProperties)
 {
     this.alert            = alert;
     this.badge            = badge;
     this.sound            = sound;
     this.customProperties = customProperties;
 }
示例#2
0
文件: Payload.cs 项目: smoak/libAPNs
 public Payload(PayloadAlertMessage alert, int badge, string sound, IDictionary<string, object[]> customProperties)
 {
     this.alert = alert;
     this.badge = badge;
     this.sound = sound;
     this.customProperties = customProperties;
 }
示例#3
0
 public Payload(PayloadAlertMessage alert, int badge, string sound)
     : this(alert, badge, sound, null)
 {
 }
示例#4
0
文件: Payload.cs 项目: smoak/libAPNs
 public Payload(PayloadAlertMessage alert, int badge, string sound)
     : this(alert, badge, sound, null)
 {
 }