У меня есть метод, который выполняет POST, как показано ниже var response = await client.PostAsJsonAsync(url, entity); if (response.IsSuccessStatusCode) { // read the response as strongly typed object return await response.Content.ReadAsAsync<T>(); } Мой вопрос в том, как я могу получить...