AGENT.Contrib.Notifications.SimpleNotifications.RandomNotification C# (CSharp) 메소드

RandomNotification() 개인적인 메소드

private RandomNotification ( ) : void
리턴 void
        private void RandomNotification()
        {
            timer = new Timer(state =>
                {
                    var n = GetNewRandomNotification();

                    Notifications.Add(n);

                    Debug.Print("new notification:" + n.Text);
                    if (OnNotificationReceived != null) OnNotificationReceived(n);
                }, null, 5000, Util.Random.Next(1000, 10000));
        }