Exemple #1
0
        public static CPNotificationOpenedResult CPNotificationOpenedResultToNative(Android.NotificationOpenedResult result)
        {
            var openresult = new CPNotificationOpenedResult();

            openresult.notification = CPNotificationToNative(result.Notification);

            return(openresult);
        }
 public void NotificationReceived(Android.NotificationOpenedResult result)
 {
     (CleverPush.Current as CleverPushImplementation).OnNotificationReceived(NotificationOpenedHandler.CPNotificationOpenedResultToNative(result));
 }