最佳答案
我有一个方法,它可以像下面这样做一个 POST
var response = await client.PostAsJsonAsync(url, entity);
if (response.IsSuccessStatusCode)
{
// read the response as strongly typed object
return await response.Content.ReadAsAsync<T>();
}
我的问题是如何获得从实体对象发布的实际 JSON。我希望记录发布的 JSON,因此,如果不需要我自己进行 JSON 序列化就可以做到这一点。