gpt4 book ai didi

c# - Windows Phone 8 Web 浏览器任务

转载 作者:太空宇宙 更新时间:2023-11-03 13:26:01 26 4
gpt4 key购买 nike

WebBrowserTask webbrowsertask = new WebBrowserTask();
webbrowsertask.Uri = new Uri("http://johndoe/index.php?dsa=51",UriKind.Absolute);
webbrowsertask.Show();
NavigationService.Navigate(new Uri("Mainpage.xaml",UriKind.RelativeOrAbsolute));

webbrowsertask.Show();正在执行此代码并打开浏览器我不想打开浏览器,我只想执行此代码(到达此 url,因为我希望在我的站点/数据库中发送此参数)还有其他方法吗?

最佳答案

using System.IO;
using System.Net;

String URI = "http://somesite.com/somepage.html";

WebClient webClient = new WebClient();
Stream stream = webClient.OpenRead(URI);
String request = reader.ReadToEnd();

从这里:http://www.codeproject.com/Articles/33798/HTTP-GET-with-NET-WebClient

这是原始想法,但您可以根据自己的喜好对其进行调整。

MSDN 信息:http://msdn.microsoft.com/en-us/library/system.net.webclient(v=vs.110).aspx

附言并且您肯定需要一个 POST 调用,而不是 GET,以便将数据存储在您的服务/数据库/任何内容中,正如您在问题中提到的那样。

更多信息:How to post data to specific URL using WebClient in C#

关于c# - Windows Phone 8 Web 浏览器任务,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22425874/

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