Exemplo n.º 1
0
 public static GcmNotification WithTitleLocArgs(this GcmNotification not, string titleLocArgs)
 {
     not.TitleLocArgs = titleLocArgs;
     return(not);
 }
Exemplo n.º 2
0
 public static GcmNotification WithTitleLocKey(this GcmNotification not, string titleLocKey)
 {
     not.TitleLocKey = titleLocKey;
     return(not);
 }
Exemplo n.º 3
0
 public static GcmNotification WithBodyLocKey(this GcmNotification not, string bodyLocKey)
 {
     not.BodyLocKey = bodyLocKey;
     return(not);
 }
Exemplo n.º 4
0
 public static GcmNotification WithBodyLocArgs(this GcmNotification not, string bodyLocArgs)
 {
     not.BodyLocArgs = bodyLocArgs;
     return(not);
 }
Exemplo n.º 5
0
 public static GcmNotification WithColor(this GcmNotification not, string color)
 {
     not.Color = color;
     return(not);
 }
Exemplo n.º 6
0
 public static GcmNotification WithClickAction(this GcmNotification not, string clickAction)
 {
     not.ClickAction = clickAction;
     return(not);
 }
Exemplo n.º 7
0
 public static GcmNotification WithBadge(this GcmNotification not, int badge)
 {
     not.Badge = badge;
     return(not);
 }
Exemplo n.º 8
0
 public static GcmNotification WithTag(this GcmNotification not, string tag)
 {
     not.Tag = tag;
     return(not);
 }
Exemplo n.º 9
0
 public static GcmNotification WithSound(this GcmNotification not, string sound)
 {
     not.Sound = sound;
     return(not);
 }
Exemplo n.º 10
0
 public static GcmNotification WithIcon(this GcmNotification not, string icon)
 {
     not.Icon = icon;
     return(not);
 }
Exemplo n.º 11
0
 public static GcmNotification WithTitle(this GcmNotification not, string title)
 {
     not.Title = title;
     return(not);
 }
Exemplo n.º 12
0
 public static GcmMessage WithNotification(this GcmMessage msg, GcmNotification not)
 {
     msg.Notification = not;
     return(msg);
 }
Exemplo n.º 13
0
 public static GcmMessage WithNotification(this GcmMessage msg, GcmNotification not)
 {
     msg.Notification = not;
     return msg;
 }