HttpClient PostAsyncの2番目のパラメーターにHttpContentを設定するにはどうすればよいですか?
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; } PostAsyncする必要がある別のパラメータを取りますHttpContent。 どのように設定しHttpContentますか?Windows Phone 8で機能するドキュメントはありません。 私がするならGetAsync、それは素晴らしい働きをします!しかし、key …