无法找到如何使用 HttpContent。
无法找到如何使用 HttpContent。
我正在尝试使用 HttpContent
:
HttpContent myContent = HttpContent.Create(SOME_JSON);
...但我没有找到定义它的DLL文件。
首先,我尝试添加对 Microsoft.Http
和 System.Net
的引用,但它们都不在列表中。我还尝试添加对 System.Net.Http
的引用,但是HttpContent
类不可用。
所以,有人能告诉我在哪里可以找到 HttpContent
类吗?
admin 更改状态以发布 2023年5月20日
只需使用...
var stringContent = new StringContent(jObject.ToString()); var response = await httpClient.PostAsync("http://www.sample.com/write", stringContent);
或者,
var stringContent = new StringContent(JsonConvert.SerializeObject(model), Encoding.UTF8, "application/json"); var response = await httpClient.PostAsync("http://www.sample.com/write", stringContent);