在WinForms應(yīng)用程序中調(diào)用Web API的方法通常是使用HttpClient類。以下是一個(gè)簡(jiǎn)單的示例代碼:
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();
// 處理返回的數(shù)據(jù)
// ...
}
else
{
MessageBox.Show("請(qǐng)求失敗: " + response.StatusCode);
}
}
catch (Exception ex)
{
MessageBox.Show("錯(cuò)誤: " + ex.Message);
}
}
}
在上述示例中,我們創(chuàng)建了一個(gè)HttpClient對(duì)象,并在按鈕的點(diǎn)擊事件處理程序中使用GetAsync方法發(fā)送GET請(qǐng)求。然后,我們檢查響應(yīng)是否成功,如果成功,我們讀取響應(yīng)內(nèi)容并進(jìn)行后續(xù)處理。如果請(qǐng)求失敗,我們顯示錯(cuò)誤消息框。
請(qǐng)注意,上述示例中的URL僅作為示例,您需要將其替換為您實(shí)際要調(diào)用的Web API的URL。