Domande taggate «httpcontent»

6
Dov'è HttpContent.ReadAsAsync?
Vedo in tonnellate di esempi sul web usando il nuovo HttpClientoggetto (come parte della nuova API Web) che dovrebbe esserci un HttpContent.ReadAsAsync<T>metodo. Tuttavia, MSDN non menziona questo metodo, né IntelliSense lo trova. Dove è andato e come posso aggirarlo?

2
Come posso configurare HttpContent per il mio secondo parametro PostAsync di HttpClient?
public static async Task<string> GetData(string url, string data) { UriBuilder fullUri = new UriBuilder(url); if (!string.IsNullOrEmpty(data)) fullUri.Query = data; HttpClient client = new HttpClient(); HttpResponseMessage response = await client.PostAsync(new Uri(url), /*expects HttpContent*/); response.Content.Headers.ContentType = new MediaTypeHeaderValue("application/json"); response.EnsureSuccessStatusCode(); string responseBody = await response.Content.ReadAsStringAsync(); return responseBody; } La PostAsyncprende un altro parametro …
Utilizzando il nostro sito, riconosci di aver letto e compreso le nostre Informativa sui cookie e Informativa sulla privacy.
Licensed under cc by-sa 3.0 with attribution required.