我在 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 但未应用路由!知道为什么吗?