Guest User

Untitled

a guest
Mar 23rd, 2018
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.21 KB | None | 0 0
  1. var articles = _cmsClient.GetAllArticlesAsync().Result;
  2.  
  3. List<Article> articles = null;
  4. var wpLoadTask = Task.Run(async () =>
  5. {
  6. articles = await _cmsClient.GetAllArticlesAsync();
  7. });
  8.  
  9. wpLoadTask.Wait();
Add Comment
Please, Sign In to add comment