Browse Source

Refactoring

release/3.x.x
Christian 6 years ago
parent
commit
d14088512b
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      Frameworks/MQTTnet.NetStandard/Client/MqttClient.cs

+ 2
- 2
Frameworks/MQTTnet.NetStandard/Client/MqttClient.cs View File

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


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


@@ -212,7 +212,7 @@ namespace MQTTnet.Client
WillMessage = willApplicationMessage 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) if (response.ConnectReturnCode != MqttConnectReturnCode.ConnectionAccepted)
{ {
throw new MqttConnectingFailedException(response.ConnectReturnCode); throw new MqttConnectingFailedException(response.ConnectReturnCode);


Loading…
Cancel
Save