コード例 #1
0
ファイル: Notification.cs プロジェクト: panjiyang/Bode
 public Notification()
 {
     this.alert = null;
     this.IosNotification = null;
     this.AndroidNotification = null;
     this.WinphoneNotification = null;
 }
コード例 #2
0
ファイル: Notification.cs プロジェクト: panjiyang/Bode
        public static Notification winphone(String alert)
        {
            var platformNotification = new WinphoneNotification().setAlert(alert);

            var notificaiton = new Notification().setAlert(alert);
            notificaiton.WinphoneNotification = platformNotification;
            return notificaiton;
        }
コード例 #3
0
ファイル: Notification.cs プロジェクト: panjiyang/Bode
 public Notification setWinphone(WinphoneNotification winphone)
 {
     this.WinphoneNotification = winphone;
     return this;
 }