gpt4 book ai didi

C# Azure 和 IOT 对类型 'stream' 的引用声称在 'System.RunTime' 中定义,但找不到

转载 作者:行者123 更新时间:2023-12-03 05:04:30 27 4
gpt4 key购买 nike

我正在尝试在以下网站上创建示例。它应该允许我将数据发送到 Azure。

我查找了此错误,但我没有使用交互窗口,并且 #r 似乎不是答案。我相信这个问题会阻止我使用我的标题,但我会尝试。

https://catalog.azureiotsuite.com/details?title=Raspberry_Pi3&source=home-page

“对类型‘stream’的引用声称在‘System.RunTime’中定义,但找不到。”

引用消息的行获取此信息,下面带有等待的行获取“任务”的信息

using System.Text;
using System.Threading.Tasks;
using Microsoft.Azure.Devices.Client;
using Windows.UI.Xaml.Controls;

namespace MyFirstIotCoreApp
{
/// <summary>
/// An empty page that can be used on its own or navigated to within a Frame.
/// </summary>
public sealed partial class MainPage : Page
{

public MainPage()
{
this.InitializeComponent();
SendDataToAzure();

}

private async Task SendDataToAzure()
{
DeviceClient deviceClient = DeviceClient.CreateFromConnectionString(<replace>, TransportType.Http1);

var text = "Hello, Windows 10!";
var msg = new Message(Encoding.UTF8.GetBytes(text));

await deviceClient.SendEventAsync(msg);
}
}
}

最佳答案

早上好;

 Anytime I see an error referencing a missing item in a Framework library like

我的第一个想法是检查框架版本。部分功能仅存在于框架的某些版本中,因为它们开发了新功能。

检查框架版本,看看您是否选择了支持的版本该功能。

关于C# Azure 和 IOT 对类型 'stream' 的引用声称在 'System.RunTime' 中定义,但找不到,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48143997/

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