c# – 将正文添加到与天蓝服务一起使用的HttpWebRequest mgmt api

前端之家收集整理的这篇文章主要介绍了c# – 将正文添加到与天蓝服务一起使用的HttpWebRequest mgmt api前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我将如何添加到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,buf.Length);

var HttpWebResponse = (HttpWebResponse)request.GetResponse();
原文链接:https://www.f2er.com/csharp/92796.html

猜你在找的C#相关文章