使用了FormUrlEncodedContent类的函数代码?
时间: 2023-02-11 15:25:30 浏览: 232
WEB、php、C#、JAVA短信发送示例代码
```
using (var httpClient = new HttpClient())
{
var values = new Dictionary<string, string>
{
{ "key1", "value1" },
{ "key2", "value2" }
};
var content = new FormUrlEncodedContent(values);
var response = await httpClient.PostAsync("https://www.example.com/recepticle.aspx", content);
var responseString = await response.Content.ReadAsStringAsync();
}
```
这是使用 C# 中的 FormUrlEncodedContent 类的一个示例代码。它向 "https://www.example.com/recepticle.aspx" 发送一个 HTTP POST 请求,并将 "key1" 和 "value1" 以及 "key2" 和 "value2" 作为请求正文中的键值对发送。最后,它读取响应正文并将其转换为字符串。
阅读全文