How to get response body from httpclient c# when doing multipart
问题 I am trying to post multipart data using System.Net.Http.HttpClient, the obtained response is 200 ok. Here is the Method I used: public async Task postMultipart() { var client = new HttpClient(); client.DefaultRequestHeaders.TryAddWithoutValidation("Content-Type", "multipart/form-data"); // This is the postdata MultipartFormDataContent content = new MultipartFormDataContent( ); content.Add(new StringContent("12", Encoding.UTF8), "userId"); content.Add(new StringContent("78", Encoding.UTF8),