码迷,mamicode.com
首页 > Windows程序 > 详细

C# Async和Await的异步编程例子

时间:2017-01-28 18:12:48      阅读:282      评论:0      收藏:0      [点我收藏+]

标签:sam   integer   rgs   win   nts   form   sig   object   rom   


  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. using System.Windows;
  7. using System.Windows.Controls;
  8. using System.Windows.Data;
  9. using System.Windows.Documents;
  10. using System.Windows.Input;
  11. using System.Windows.Media;
  12. using System.Windows.Media.Imaging;
  13. using System.Windows.Navigation;
  14. using System.Windows.Shapes;
  15. // Add a using directive and a reference for System.Net.Http;
  16. using System.Net.Http;
  17. namespace AsyncFirstExample
  18. {
  19. public partial class MainWindow : Window
  20. {
  21. // Mark the event handler with async so you can use await in it.
  22. private async void StartButton_Click(object sender, RoutedEventArgs e)
  23. {
  24. // Call and await separately.
  25. //Task<int> getLengthTask = AccessTheWebAsync();
  26. //// You can do independent work here.
  27. //int contentLength = await getLengthTask;
  28. int contentLength = await AccessTheWebAsync();
  29. resultsTextBox.Text +=
  30. String.Format("\r\nLength of the downloaded string: {0}.\r\n", contentLength);
  31. }
  32. // Three things to note in the signature:
  33. // - The method has an async modifier.
  34. // - The return type is Task or Task<T>. (See "Return Types" section.)
  35. // Here, it is Task<int> because the return statement returns an integer.
  36. // - The method name ends in "Async."
  37. async Task<int> AccessTheWebAsync()
  38. {
  39. // You need to add a reference to System.Net.Http to declare client.
  40. HttpClient client = new HttpClient();
  41. // GetStringAsync returns a Task<string>. That means that when you await the
  42. // task you‘ll get a string (urlContents).
  43. Task<string> getStringTask = client.GetStringAsync("http://msdn.microsoft.com");
  44. // You can do work here that doesn‘t rely on the string from GetStringAsync.
  45. DoIndependentWork();
  46. // The await operator suspends AccessTheWebAsync.
  47. // - AccessTheWebAsync can‘t continue until getStringTask is complete.
  48. // - Meanwhile, control returns to the caller of AccessTheWebAsync.
  49. // - Control resumes here when getStringTask is complete.
  50. // - The await operator then retrieves the string result from getStringTask.
  51. string urlContents = await getStringTask;
  52. // The return statement specifies an integer result.
  53. // Any methods that are awaiting AccessTheWebAsync retrieve the length value.
  54. return urlContents.Length;
  55. }
  56. void DoIndependentWork()
  57. {
  58. resultsTextBox.Text += "Working . . . . . . .\r\n";
  59. }
  60. }
  61. }
  62. // Sample Output:
  63. // Working . . . . . . .
  64. // Length of the downloaded string: 41564.





C# Async和Await的异步编程例子

标签:sam   integer   rgs   win   nts   form   sig   object   rom   

原文地址:http://www.cnblogs.com/xiejunzhao/p/6354355.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!