Пример #1
0
        public static void DoNotificationCheck()
        {
            // Do we have any new notifications?
            var notifications = _api.GetNotifications();

            foreach (ghNotification n in notifications)
            {
                var commentData = _api.GetCommentData(n.subject.latest_comment_url);
                PopNotificationToUrl(n.subject.title, n.subject.type, commentData.html_url, n.url);
            }
        }