Example #1
0
        public ActionResult GetPosts(string id, long PlayerID)
        {
            var posts = RssFeeder.GetProgresDashboardFeeds(PlayerID);

            return(PartialView("_GenerateCommunityPosts", posts));
        }
        private async Task GetFeeds(string url)
        {
            RssFeeder feeds = await _client.GetFeeds(url, _maxFeeds);

            this.DataContext = feeds;
        }