gpt4 book ai didi

c# - 将正文添加到与 azure 服务 mgmt api 一起使用的 HttpWebRequest

转载 作者:可可西里 更新时间:2023-11-01 08:16:02 26 4
gpt4 key购买 nike

我如何添加到 HttpWebRequest 的正文中?

正文需要由以下部分组成

<?xml version="1.0" encoding="utf-8"?>
<ChangeConfiguration xmlns="http://schemas.microsoft.com/windowsazure">
<Configuration>base-64-encoded-configuration-file</Configuration>
<TreatWarningsAsError>true|false</TreatWarningsAsError>
<Mode>Auto|Manual</Mode>
</ChangeConfiguration>

非常感谢任何帮助

最佳答案

byte[] buf = Encoding.UTF8.GetBytes(xml);

request.Method = "POST";
request.ContentType = "text/xml";
request.ContentLength = buf.Length;
request.GetRequestStream().Write(buf, 0, buf.Length);

var HttpWebResponse = (HttpWebResponse)request.GetResponse();

关于c# - 将正文添加到与 azure 服务 mgmt api 一起使用的 HttpWebRequest,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9153181/

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