Exemplo n.º 1
0
 /// <summary>
 /// Gets a collection <see cref="PodcastFeed"/>, listed at the top charts for the given genre.
 /// </summary>
 /// <param name="genre">Genre for which to read the top charts.</param>
 /// <param name="maxPodcastLimit">Max number of podcasts to read from the top charts (Defaults to 10).</param>
 /// <returns>Collection of podcast top charts results.</returns>
 public IEnumerable <PodcastFeed> GetTopCharts(PodcastGenre genre, uint maxPodcastLimit = 10)
 {
     return(_podcastCharts.GetPodcasts(genre, maxPodcastLimit));
 }