Example #1
0
 /// <summary>
 /// 设置前台通知点击事件
 /// </summary>
 /// <param name="foregroundNotificationClickListener"></param>
 /// <returns></returns>
 public ForegroundNotification foregroundNotificationClickListener(IForegroundNotificationClickListener?foregroundNotificationClickListener)
 {
     this._foregroundNotificationClickListener = foregroundNotificationClickListener;
     return(this);
 }
Example #2
0
 public ForegroundNotification(String title, String description, int iconRes, IForegroundNotificationClickListener foregroundNotificationClickListener) : this(title, description, iconRes)
 {
     this._foregroundNotificationClickListener = foregroundNotificationClickListener;
 }