コード例 #1
0
 /// Called by the Google Cloud Messaging plugin to notify
 /// of a received push notification.
 public virtual void OnNotificationReceived(string notificationJson)
 {
     if (SDK != null && SDK.Initialised)
     {
         SDK.NotificationReceived(notificationJson);
     }
 }
コード例 #2
0
 /// Called by the push plugin to notify
 /// of a received push notification.
 public virtual void OnNotificationReceived(string notificationJson)
 {
     if (SDK != null)
     {
         SDK.NotificationReceived(notificationJson);
     }
 }