C#_winfrom与API之HttpClient
最近需要写一些winfrom与端口交互的代码,需要的自取哦!
using System; using System.Collections.Generic; using System.Linq; using System.Net.Http; using System.Text; using System.Threading.Tasks; namespace WindowsFormsApplication7 { public static class HTTPClientHelper { //TCP/IP 3次握手 //第1个参数是请求类型,第2个参数是API方法名,第3个参数是传送的对象 public static string GetAPIData(string requestType, string actionname, object obj = null) { //实例化HttpClient HttpClient hc = new HttpClient(); //设置API地址 hc.BaseAddress = new Uri("http://localhost:12617/api/default/"); //创建一个任务获取服务端返回的结果 Task<HttpResponseMessage> task = null; //第1次握手发送请求 switch (requestType) { case "get": task = hc.GetAsync(actionname); break; case "post": task = hc.PostAsJsonAsync(actionname, obj); break; case "put": task = hc.PutAsJsonAsync(actionname, obj); break; case "delete": task = hc.DeleteAsync(actionname); break; } //第2次握手 接收数据 if (task != null) { //第3次握手 检查数据包 if (task.Result.IsSuccessStatusCode) { //把XML转换为字符串 var strtask = task.Result.Content.ReadAsStringAsync(); //转换结果 return strtask.Result; } } return ""; } } }
相关推荐
84487600 2020-08-16
似水流年梦 2020-08-09
knightwatch 2020-07-26
fengchao000 2020-06-16
标题无所谓 2020-06-14
sicceer 2020-06-12
yanghui0 2020-06-09
yanghui0 2020-06-09
创建一个 HttpClient 实例,这个实例需要调用 Dispose 方法释放资源,这里使用了 using 语句。接着调用 GetAsync,给它传递要调用的方法的地址,向服务器发送 Get 请求。
wanghongsha 2020-06-04
jiaguoquan00 2020-05-26
zhaolisha 2020-05-16
wanghongsha 2020-05-05
wanghongsha 2020-04-14
knightwatch 2020-04-11
hygbuaa 2020-03-27
zergxixi 2020-03-24