在WinForms應用程序中調用Web API的方法通常是使用HttpClient類。以下是一個簡單的示例代碼:
using System;
using System.Net.Http;
using System.Threading.Tasks;
using System.Windows.Forms;
public partial class Form1 : Form
{
private static readonly HttpClient client = new HttpClient();
public Form1()
{
InitializeComponent();
}
private async void button1_Click(object sender, EventArgs e)
{
try
{
string url = "https://api.example.com/api/someendpoint";
HttpResponseMessage response = await client.GetAsync(url);
if (response.IsSuccessStatusCode)
{
string result = await response.Content.ReadAsStringAsync();
// 處理返回的數據
// ...
}
else
{
MessageBox.Show("請求失敗: " + response.StatusCode);
}
}
catch (Exception ex)
{
MessageBox.Show("錯誤: " + ex.Message);
}
}
}
在上述示例中,我們創建了一個HttpClient對象,并在按鈕的點擊事件處理程序中使用GetAsync方法發送GET請求。然后,我們檢查響應是否成功,如果成功,我們讀取響應內容并進行后續處理。如果請求失敗,我們顯示錯誤消息框。
請注意,上述示例中的URL僅作為示例,您需要將其替換為您實際要調用的Web API的URL。