Beispiel #1
0
        public static void AddFeed(RSSFeed feed)
        {
            try {
                Validation.ValidateFeed(feed);
            } catch (ValidationExeption ex) {
                throw ex;
            }

            feed.StartTimer();
            feed.TimerTick += OnUpdatedFeed;
            PodcastFeeds.Add(feed);
        }