/// <summary> /// Stop publishing node values /// </summary> /// <remarks> /// Stop publishing variable node values to IoT Hub. /// The endpoint must be activated and connected and the module client /// and server must trust each other. /// </remarks> /// <param name='operations'> /// The operations group for this extension method. /// </param> /// <param name='endpointId'> /// The identifier of the activated endpoint. /// </param> /// <param name='request'> /// The unpublish request /// </param> /// <param name='cancellationToken'> /// The cancellation token. /// </param> public static async Task <PublishStopResponseApiModel> StopPublishingValuesAsync(this IAzureOpcTwinClient operations, string endpointId, PublishStopRequestApiModel request, CancellationToken cancellationToken = default(CancellationToken)) { using (var _result = await operations.StopPublishingValuesWithHttpMessagesAsync(endpointId, request, null, cancellationToken).ConfigureAwait(false)) { return(_result.Body); } }