我正在尝试使用HttpContent
:
HttpContent myContent = HttpContent.Create(SOME_JSON);
...但是我找不到在定义该DLL的地方碰运气。
首先,我尝试添加对
Microsoft.Http
和System.Net
的引用,但两者均不在列表中。我也尝试添加对System.Net.Http
的引用,但HttpContent
类不可用。那么,谁能告诉我在哪里可以找到
HttpContent
类? 最佳答案
只是使用...
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);