在C#中使用WebClient類發送請求非常簡單。以下是一個示例代碼,演示了如何使用WebClient發送一個GET請求:
using System;
using System.Net;
class Program
{
static void Main()
{
// 創建WebClient實例
WebClient client = new WebClient();
// 發送GET請求并獲取響應
string response = client.DownloadString("https://example.com/api");
// 輸出響應內容
Console.WriteLine(response);
}
}
在上面的示例中,我們首先創建一個WebClient實例,然后使用DownloadString方法發送GET請求并獲取響應內容。您可以根據需要調用其他方法(如UploadData、UploadString等)來發送不同類型的請求。