Beispiel #1
0
 private void OnNotification(NotifycationType type)
 {
     if (type == NotifycationType.SubscribeUpdated)
     {
         ShowServerList();
     }
 }
Beispiel #2
0
        public Notification(Gig gig, NotifycationType type)
        {
            if (gig == null)
            {
                throw new ArgumentNullException("gig");
            }

            Gig      = gig;
            Type     = type;
            DateTime = DateTime.Now;
        }
Beispiel #3
0
 public void TryNotify(NotifycationType type)
 {
     OnNotification(type);
 }