其他分享
首页 > 其他分享> > .net core web api 与httpclient发送和接收文件及数据【转载】

.net core web api 与httpclient发送和接收文件及数据【转载】

作者:互联网

转:https://www.cnblogs.com/dayang12525/p/10688842.html

客户端 HttpClient

复制代码
         var url = $"https://localhost:44323/api/values/posttest?resource_source=yangwwmessage";
                using (HttpClient _client = new HttpClient())
                {
                    using (var multiContent = new MultipartFormDataContent())
                    {
                        var fileContent = new ByteArrayContent(System.IO.File.ReadAllBytes(imgPath));
                        multiContent.Add(fileContent, "file", Path.GetFileName(imgPath));

                        HttpResponseMessage response = _client.PostAsync(url, multiContent).Result;
                        string data = response.Content.ReadAsStringAsync().Result;
                    }
                }
复制代码

服务端.net core Web Api 

复制代码
        [HttpPost]
        [Route("PostTest")]
        public JsonResult PostTest()
        {
            var r = Request.Query["resource_source"].ToString();
            var files = HttpContext.Request.Form.Files;
            return new JsonResult("this is a test api for me") { StatusCode = 200 };
        }
复制代码

标签:core,web,api,fileContent,var,new,multiContent,HttpClient
来源: https://www.cnblogs.com/nnnnnn/p/14137739.html