public override async Task EnableTwinPatchAsync(CancellationToken cancellationToken)
        {
            Logging.Enter(this, cancellationToken, $"{nameof(EnableTwinPatchAsync)}");

            try
            {
                cancellationToken.ThrowIfCancellationRequested();
                await _amqpUnit.EnableTwinLinksAsync(_operationTimeout).ConfigureAwait(false);

                await _amqpUnit.SendTwinMessageAsync(AmqpTwinMessageType.Put, Guid.NewGuid().ToString(), null, _operationTimeout).ConfigureAwait(false);
            }
            finally
            {
                Logging.Exit(this, cancellationToken, $"{nameof(EnableTwinPatchAsync)}");
            }
        }
 public override async Task EnableTwinPatchAsync(CancellationToken cancellationToken)
 {
     if (Logging.IsEnabled)
     {
         Logging.Enter(this, cancellationToken, $"{nameof(EnableTwinPatchAsync)}");
     }
     try
     {
         cancellationToken.ThrowIfCancellationRequested();
         await _amqpUnit.EnableTwinLinksAsync(_operationTimeout).ConfigureAwait(false);
     }
     finally
     {
         if (Logging.IsEnabled)
         {
             Logging.Exit(this, cancellationToken, $"{nameof(EnableTwinPatchAsync)}");
         }
     }
 }