Channel9Downloader.DataAccess.RssRepository.GetRssItems C# (CSharp) Method

GetRssItems() public method

Gets all RSS items for the specified category.
public GetRssItems ( Category category ) : List
category Channel9Downloader.Entities.Category The category for which RSS items should be retrieved.
return List
        public List<RssItem> GetRssItems(Category category)
        {
            var doc = DownloadFeedData(category);
            var items = ParseRssItems(doc);
            return items;
        }

Same methods

RssRepository::GetRssItems ( ) : List