1

如何在应用程序 C#(通用应用程序 Windows)中从 Visual Studio 2015 for Windows Iot 创建获取 url

Getreponse();从 c# 2015 开始已弃用

HttpWebRequest request = (HttpWebRequest)WebRequest.Create("http://XXX/online?check=useronline");
request.Method = "GET";
using (var response = request.GetResponse())
using (var stream = response.GetResponseStream())
using (var reader = new StreamReader(stream))

在此处输入图像描述

4

2 回答 2

0

你可以看看这个例子。

https://ms-iot.github.io/content/en-US/win10/samples/BlinkyWebServer.htm

从一个功能接收的所有请求都可以轻松使用 reqex 并创建您的 Web 服务。

于 2016-02-03T15:22:26.847 回答
0

Universal App Platform 有一个很棒的 HTTP 类。

HttpClient 拥有您只需几行代码即可获得 Web 资源所需的一切。

var client = new HttpClient();
var content = await client.GetStringAsync(new Uri("http://danvy.tv"));

在此处查看详细信息

https://msdn.microsoft.com/en-US/library/windows/apps/xaml/windows.web.http.httpclient.getstringasync

于 2016-02-08T03:26:37.063 回答