gpt4 book ai didi

windows-8 - 如何在 Windows 应用商店应用程序中通过 HTTP POST 方法发布 XML 数据?

转载 作者:行者123 更新时间:2023-12-02 23:28:21 27 4
gpt4 key购买 nike

有关在 Windows 8 应用程序中使用休息服务发布方法的任何示例。请让我知道相关的可能链接。

最佳答案

试试这个

using System.IO;
using System.Net.Http;
using System.Text;

var objHttpClient = new HttpClient();
var formParameters = "<details><id>1</id><name>test</name></details>");
var objHttpRequestMessage = new HttpRequestMessage(HttpMethod.Post, "http://example.com/page");
objHttpRequestMessage.Content = new StreamContent(new MemoryStream(Encoding.UTF8.GetBytes(formParameters)));
objHttpRequestMessage.Content.Headers.Add("Content-Type", "text/xml");
var result = await objHttpClient.SendAsync(objHttpRequestMessage);

另请检查HttpClient sample on MSDN

关于windows-8 - 如何在 Windows 应用商店应用程序中通过 HTTP POST 方法发布 XML 数据?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18441269/

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