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

C# Azure and IOT Reference to type 'stream' claims to be defined in 'System.RunTime', but it could not be found

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

我查了这个错误,但我没有使用交互式 window,#r 似乎不是答案。我相信这个问题会阻止我使用我的头衔,但我会尝试。

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

"Reference to type 'stream' claims to be defined in 'System.RunTime', but it could not be found."

引用 Message 的行得到这个,下面的等待行得到它 'Task'

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

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

查看Framework版本是否选择了支持的版本 该功能。