I am struggling to get "Event" type measurements into the IOT central app. I have successfully gotten Telemetry, State, and Location working as far as measurements go. However, when I call SendEventAsync() from my C# app and pass in my event ("shutdown"), I never see any updates for Event in my app.
What is the proper syntax for this type of event?
Currently trying:
Code snippets:
using Microsoft.Azure.Devices.Client;
var eventString = "shutdown";
await Client.SendEventAsync(new Message(Encoding.ASCII.GetBytes(eventString)));