ฉันจะตั้งค่า HttpContent สำหรับพารามิเตอร์ที่สอง HttpClient PostAsync ของฉันได้อย่างไร
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; } ใช้เวลาพารามิเตอร์อื่นที่จะต้องมีPostAsyncHttpContent ฉันจะตั้งค่าได้HttpContentอย่างไร ไม่มีเอกสารใด ๆ ที่ใช้งานได้กับ …