gpt4 book ai didi

C# HttpWeb请求

转载 作者:行者123 更新时间:2023-11-30 22:40:30 28 4
gpt4 key购买 nike

我想知道如何通过 POST 而不是 GET 在 C# 上发出 Http Web 请求。

我有一个通过 GET 工作的例子:

ASPX File ASPX C# File

现在我想知道如何通过 POST 发送数据的简单 Http Web 请求。

非常感谢!!

最佳答案

非常简单:

request.Method = "POST";

// Write parameters...
byte[] data = new ASCIIEncoding( ).GetBytes( parameters );
request.ContentType = "application/x-www-form-urlencoded";
request.ContentLength = data.Length;
using ( Stream outStream = request.GetRequestStream( ) )
outStream.Write( data, 0, data.Length );

关于C# HttpWeb请求,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5160516/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com