Ejemplo n.º 1
0
        private void Timer_Tick(object sender, EventArgs e)
        {
            Timer  timer = (Timer)sender;
            string url   = (string)timer.Tag;

            podcastController.CheckForNewEpisodes(url);
            dgPodcastFeed.Rows.Clear();
            podcasts = podcastController.GetPodcasts();
            FillPodcastList();
        }