Exemplo n.º 1
0
        public static Notification android(String alert, String title)
        {
            var platformNotification = new AndroidNotification().setAlert(alert).setTitle(title);
            var notificaiton         = new Notification().setAlert(alert);

            notificaiton.AndroidNotification = platformNotification;
            return(notificaiton);
        }
Exemplo n.º 2
0
 public Notification setAndroid(AndroidNotification android)
 {
     this.AndroidNotification = android;
     return(this);
 }