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

C# HttpClient Get获取网页内容

时间:2018-05-31 12:22:31      阅读:408      评论:0      收藏:0      [点我收藏+]

标签:ade   pid   close   IV   TE   网页   client   linq   AC   

 1 using System;
 2 using System.Collections.Generic;
 3 using System.IO;
 4 using System.Linq;
 5 using System.Net;
 6 using System.Text;
 7 using System.Threading.Tasks;
 8 
 9 namespace WinSpider
10 {
11     public static class Extentions
12     {
13         public static string ReadString(this Stream stream, bool autoClose=true)
14         {
15             using (StreamReader reader = new StreamReader(stream))
16             {
17                 string str = reader.ReadToEnd();
18                 if(autoClose)
19                     stream.Close();
20                 return str;
21             }
22         }
23 
24         public static string GetString(this WebClient web, string url)
25         { 
26             return web.OpenRead(url).ReadString();
27         }
28     }
29 }

 

C# HttpClient Get获取网页内容

标签:ade   pid   close   IV   TE   网页   client   linq   AC   

原文地址:https://www.cnblogs.com/ybst/p/9115934.html

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