Ejemplo n.º 1
0
        public static void ClearNotifications(string channel)
        {
            foreach (var comp in Scene.Current.FindComponents <NotificationsArea>().Where(x => x.Channel == channel))
            {
                comp.Reset();
            }

            NotificationsArea.ClearTransferMessages(channel);
        }
Ejemplo n.º 2
0
        public static void ClearNotifications()
        {
            foreach (var comp in Scene.Current.FindComponents <NotificationsArea>())
            {
                comp.Reset();
            }

            NotificationsArea.ClearTransferMessages();
        }