乐知付加密服务平台

如果你有资源, 平台可以帮你实现内容变现, 无需搭建知识付费服务平台。

点击访问官方网站 https://lezhifu.cc

扫码关注公众号 乐知付加密服务平台-微信公众号
winforms基本操作-发送http请求 | chenzuoli's blog

winforms基本操作-发送http请求

请见详情。

发送post请求:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
using (var client = new HttpClient())
{
var url = "http://www.example.com/api/post";
var content = new StringContent("{ \"key\": \"value\" }", Encoding.UTF8, "application/json");

//HttpResponseMessage response = await client.PostAsync(url, content);
HttpResponseMessage response = await client.GetAsync(url, content);

if (response.IsSuccessStatusCode)
{
string responseBody = await response.Content.ReadAsStringAsync();
Console.WriteLine(responseBody);
}
else
{
Console.WriteLine("Error: " + response.StatusCode);
}
}

发送get请求:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
string url = "https://www.example.com"; // 替换为你要请求的URL
using (HttpClient client = new HttpClient())
{
HttpResponseMessage response = await client.GetAsync(url);
if (response.IsSuccessStatusCode)
{
string content = await response.Content.ReadAsStringAsync();
Console.WriteLine(content);
}
else
{
Console.WriteLine($"Error: {response.StatusCode}");
}
}

好了,记录到这里,持续更新中。

记录问题也是一种修行。

修行


书山有路勤为径,学海无涯苦作舟。

欢迎关注微信公众号:【乐知付加密平台】,您的网络资源可变现
乐知付加密平台

一起学习,一起进步。

-------------本文结束感谢您的阅读-------------