Tengo un método que hace un POST como el siguiente var response = await client.PostAsJsonAsync(url, entity); if (response.IsSuccessStatusCode) { // read the response as strongly typed object return await response.Content.ReadAsAsync<T>(); } Mi pregunta es cómo puedo obtener el JSON real...