BernieApp.Portable.Client.DesignTimeBernieClient.GetNewsArticleAsync C# (CSharp) Method

GetNewsArticleAsync() public method

public GetNewsArticleAsync ( string id ) : Task
id string
return Task
        public async Task<FeedEntry> GetNewsArticleAsync(string id)
        {
            var entry = new FeedEntry
            {
                Id = "testId",
                Title = "Bernie wins the Election!",
                Date = DateTime.Now,
                ArticleType = "Press Release",
                Body = "This is a test article. Not a real article.... yet. The red fox jumps over the I can't actually remember the rest of the font sequence, so here is some more ranting since I need a sizable article body to accurately see in the Design Time client. That should be enough.",
                Excerpt = "A riveting test article",
                ImageUrl = "http://www.someimagelinkhere.com/image-test",
                Language = "en",
                Url = "http://www.BernieSanders.com/article-url"
            };
            return entry;
        }