Esempio n. 1
0
 /// <summary>
 /// Sends telemetry on behalf of a component in a digital twin.
 /// Status codes:
 /// 200 (OK): Success.
 /// 400 (Bad Request): The request is invalid.
 /// 404 (Not Found): There is either no digital twin with the provided id or
 /// the component path is invalid.
 /// </summary>
 /// <param name='operations'>
 /// The operations group for this extension method.
 /// </param>
 /// <param name='id'>
 /// The id of the digital twin. The id is unique within the service and case
 /// sensitive.
 /// </param>
 /// <param name='componentPath'>
 /// The name of the DTDL component.
 /// </param>
 /// <param name='telemetry'>
 /// The telemetry measurements to send from the digital twin's component.
 /// </param>
 /// <param name='dtId'>
 /// A unique message identifier (in the scope of the digital twin id) that is
 /// commonly used for de-duplicating messages.
 /// </param>
 /// <param name='dtTimestamp'>
 /// An RFC 3339 timestamp that identifies the time the telemetry was measured.
 /// </param>
 public static void SendComponentTelemetry(this IDigitalTwinsOperations operations, string id, string componentPath, object telemetry, string dtId, string dtTimestamp = default(string))
 {
     operations.SendComponentTelemetryAsync(id, componentPath, telemetry, dtId, dtTimestamp).GetAwaiter().GetResult();
 }