Exemple #1
0
        public override void Cancel <T>()
        {
            NotifierUWP notifier = new NotifierUWP();

            foreach (T item in manager.GetNotiList <T>())
            {
                notifier.Cancel(item.NotiId.ToString());
            }
        }
Exemple #2
0
        public override void Cancel <T>()
        {
            NotifierAndroid notifier = new();

            foreach (T item in manager.GetNotiList <T>())
            {
                notifier.Cancel(item.NotiId);
            }
        }
Exemple #3
0
        public override void Cancel <T>()
        {
            NotifieriOS   notifier   = new NotifieriOS();
            List <string> cancelList = new List <string>();

            foreach (T item in manager.GetNotiList <T>())
            {
                cancelList.Add(item.NotiId.ToString());
            }

            notifier.Cancel(cancelList.ToArray());
        }