Explorar el Código

Refactoring

release/3.x.x
Christian hace 6 años
padre
commit
d14088512b
Se han modificado 1 ficheros con 2 adiciones y 2 borrados
  1. +2
    -2
      Frameworks/MQTTnet.NetStandard/Client/MqttClient.cs

+ 2
- 2
Frameworks/MQTTnet.NetStandard/Client/MqttClient.cs Ver fichero

@@ -50,8 +50,8 @@ namespace MQTTnet.Client

try
{
_options = options;
_cancellationTokenSource = new CancellationTokenSource();
_options = options;
_packetIdentifierProvider.Reset();
_packetDispatcher.Reset();

@@ -212,7 +212,7 @@ namespace MQTTnet.Client
WillMessage = willApplicationMessage
};

var response = await SendAndReceiveAsync<MqttConnAckPacket>(connectPacket, _cancellationTokenSource.Token).ConfigureAwait(false);
var response = await SendAndReceiveAsync<MqttConnAckPacket>(connectPacket, cancellationToken).ConfigureAwait(false);
if (response.ConnectReturnCode != MqttConnectReturnCode.ConnectionAccepted)
{
throw new MqttConnectingFailedException(response.ConnectReturnCode);


Cargando…
Cancelar
Guardar