タグ付けされた質問 「httpcontent」

6
HttpContent.ReadAsAsyncはどこにありますか?
新しいHttpClientオブジェクトを(新しいWeb APIの一部として)使用しているWeb上の多くの例で、HttpContent.ReadAsAsync<T>メソッドがあるはずです。ただし、MSDNはこの方法について言及しておらず、IntelliSenseはそれを見つけていません。 それはどこに行きましたか、そしてどのようにそれを回避しますか?

2
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 …
弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.