在C#中使用WebClient添加頭信息可以通過設(shè)置WebClient的Headers屬性來實(shí)現(xiàn)。以下是一個示例代碼:
using System;
using System.Net;
class Program
{
static void Main()
{
WebClient client = new WebClient();
// 添加自定義頭信息
client.Headers.Add("User-Agent", "MyCustomUserAgent");
// 發(fā)起請求
string response = client.DownloadString("http://www.example.com");
// 輸出響應(yīng)內(nèi)容
Console.WriteLine(response);
}
}
在上面的示例中,我們通過調(diào)用Headers.Add
方法來添加自定義的頭信息。在此示例中,我們添加了一個名為"User-Agent"的頭信息,值為"MyCustomUserAgent"。
你可以根據(jù)需要添加更多的頭信息,只需繼續(xù)調(diào)用Headers.Add
方法即可。