Пример #1
0
 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;
 }