首页 > 编程 > C# > 正文

C#实现异步GET的方法

2019-10-29 21:41:27
字体:
来源:转载
供稿:网友

这篇文章主要介绍了C#实现异步GET的方法,涉及C#异步请求的相关实现技巧,具有一定参考借鉴价值,需要的朋友可以参考下

本文实例讲述了C#实现异步GET的方法。分享给大家供大家参考。具体实现方法如下:

 

 
  1. using System; 
  2. using System.Collections.Generic; 
  3. using System.Configuration; 
  4. using System.IO; 
  5. using System.Linq; 
  6. using System.Net; 
  7. using System.Text; 
  8. using System.Threading.Tasks; 
  9. namespace WebClientAsynProject 
  10. public class Program 
  11. #region HttpWebRequest异步GET 
  12. public static void AsyncGetWithWebRequest(string url) 
  13. var request = (HttpWebRequest) WebRequest.Create(new Uri(url)); 
  14. request.BeginGetResponse(new AsyncCallback(ReadCallback), request); 
  15. private static void ReadCallback(IAsyncResult asynchronousResult) 
  16. var request = (HttpWebRequest) asynchronousResult.AsyncState; 
  17. var response = (HttpWebResponse) request.EndGetResponse(asynchronousResult); 
  18. using (var streamReader = new StreamReader(response.GetResponseStream())) 
  19. var resultString = streamReader.ReadToEnd(); 
  20. Console.WriteLine(resultString); 
  21. #endregion 
  22. #region WebClient异步GET 
  23. public static void AsyncGetWithWebClient(string url) 
  24. var webClient = new WebClient(); 
  25. webClient.DownloadStringCompleted += new DownloadStringCompletedEventHandler(client_DownloadStringCompleted); 
  26. webClient.DownloadStringAsync(new Uri(url)); 
  27. private static void client_DownloadStringCompleted(object sender, DownloadStringCompletedEventArgs e) 
  28. //Console.WriteLine(e.Cancelled); 
  29. Console.WriteLine(e.Error != null ? "WebClient异步GET发生错误!" : e.Result); 
  30. #endregion 
  31. #region WebClient的OpenReadAsync测试 
  32. public static void TestGetWebResponseAsync(string url) 
  33. var webClient = new WebClient(); 
  34. webClient.OpenReadCompleted += new OpenReadCompletedEventHandler(webClient_OpenReadCompleted); 
  35. webClient.OpenReadAsync(new Uri(url)); 
  36. private static void webClient_OpenReadCompleted(object sender, OpenReadCompletedEventArgs e) 
  37. if(e.Error == null
  38. var streamReader = new StreamReader(e.Result); 
  39. var result = streamReader.ReadToEnd(); 
  40. Console.WriteLine(result); 
  41. else 
  42. Console.WriteLine("执行WebClient的OpenReadAsync出错:" + e.Error); 
  43. #endregion 
  44. public static void Main(string[] args) 
  45. AsyncGetWithWebRequest("http://baidu.com"); 
  46. Console.WriteLine("hello"); 
  47. AsyncGetWithWebClient("http://baidu.com"); 
  48. Console.WriteLine("world"); 
  49. TestGetWebResponseAsync("http://baidu.com"); 
  50. Console.WriteLine("jxqlovejava"); 
  51. Console.Read(); 

希望本文所述对大家的C#程序设计有所帮助。

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表