Azure IotHub 路由不起作用

Azure IotHub routing is not functioning

我在 Azure IotHub 中定义了以下路由查询: $body.messageType="Test"

并使用 Microsoft.Azure.Devices.Client" SDK Version="1.28.0"

这是我非常简单的 C# 代码。

            var device = DeviceClient.CreateFromConnectionString(DeviceConnectionString);
       
            await device.OpenAsync();

            var obj = new
            {
                messageType = "Test"
            };

            var telemetryJson = JsonConvert.SerializeObject(obj);

            var message = new Message(Encoding.UTF8.GetBytes(telemetryJson));

            // Set message body type and content encoding. 
            message.ContentEncoding = "utf-8";
            message.ContentType = "application/json";

            await device.SendEventAsync(message);

消息已传送到 IotHub,但未应用路由!知道为什么吗?

你能用这样的单引号试试吗$body.messageType='Test'

我注意到 IotHub 资源的行为一点也不正常。各种类型的错误消息开始出现,例如 IotHub is not in an Active state

删除并重新创建资源解决了该问题。