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

C# 如何发送Http请求

时间:2018-10-03 00:30:59      阅读:403      评论:0      收藏:0      [点我收藏+]

标签:发送   命名   tps   The   ken   ref   http   header   content   

HttpSender是一个用来发送Http消息的轻量库,使用非常简单

使用 Nuget,搜索 HttpSender 就能找到

命名空间是HttpSender,类名是Sender

方法如下

发送 Get 请求

static string Get(string url)

发送 Post 请求

static string Post(string url,string content)
static string Post(string url, Dictionary<string,string> content)

发送 Put 请求

static string Put(string url)
static string Put(string url, Dictionary<string,string> content)

发送 Delete 请求

static string Delete(string url)

在Http头部中设置 OAuth 令牌

static void OAuth(string token)

C# 如何发送Http请求

标签:发送   命名   tps   The   ken   ref   http   header   content   

原文地址:https://www.cnblogs.com/jialilue/p/9738707.html

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