在C#中,可以使用HttpClient類來發送帶有form-data的HTTP請求。以下是一個簡單的示例代碼:
using System;
using System.Net.Http;
using System.Text;
using System.Threading.Tasks;
class Program
{
static async Task Main(string[] args)
{
using (HttpClient client = new HttpClient())
{
var formContent = new MultipartFormDataContent();
formContent.Add(new StringContent("value1"), "key1");
formContent.Add(new StringContent("value2"), "key2");
var response = await client.PostAsync("http://example.com/api", formContent);
if (response.IsSuccessStatusCode)
{
var responseContent = await response.Content.ReadAsStringAsync();
Console.WriteLine(responseContent);
}
else
{
Console.WriteLine($"Error: {response.StatusCode}");
}
}
}
}
在上面的示例中,我們使用HttpClient類創建了一個HTTP POST請求,并添加了form-data內容。可以通過調用Add方法來向formContent中添加鍵值對數據。發送請求后,我們檢查響應的狀態碼,如果請求成功,則讀取響應內容并輸出。