码迷,mamicode.com
首页 > Web开发 > 详细

HttpClient的Content-Type设置

时间:2018-12-23 22:13:32      阅读:831      评论:0      收藏:0      [点我收藏+]

标签:new   stat   ase   art   sync   ret   sele   return   syn   

HttpClient的Content-Type设置

最近在对接公司内容的一个云服务的时候,遇到一个问题,就是如果使用HttpClient如何设置post时候的Content-Type?

 public static string PostAdminSelect(string start)
{
    string url = $"{BaseUrl}admin/select";
    Model.AdminSelectQuery adminSelectQuery = new Model.AdminSelectQuery();
    adminSelectQuery.start = start;
    string res = adminSelectQuery.ToJson();
    StringContent stringContent = new StringContent(res);
    stringContent.Headers.ContentType = new System.Net.Http.Headers.MediaTypeHeaderValue("application/json");
    string result = httpClient.PostAsync(url, stringContent).Result.Content.ReadAsStringAsync().Result;
    return result;
}

这样就可以随意的设置Content-Type的值了。

HttpClient的Content-Type设置

标签:new   stat   ase   art   sync   ret   sele   return   syn   

原文地址:https://www.cnblogs.com/zzr-stdio/p/10165539.html

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