This website works better with JavaScript.
Home
Explore
Help
Register
Sign In
Compoment
/
MQTTnet
Watch
1
Star
0
Fork
0
Code
Issues
0
Pull Requests
0
Releases
0
Wiki
Activity
Browse Source
* Adds `false` param to Cancel call.
release/3.x.x
Andre Crabb
6 years ago
parent
00df7c9b7b
commit
400c0f05ad
1 changed files
with
1 additions
and
1 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-1
Source/MQTTnet/Client/MqttClient.cs
+ 1
- 1
Source/MQTTnet/Client/MqttClient.cs
View File
@@ -176,7 +176,7 @@ namespace MQTTnet.Client
public void Dispose()
{
_cancellationTokenSource?.Cancel ();
_cancellationTokenSource?.Cancel (
false
);
_cancellationTokenSource?.Dispose();
_cancellationTokenSource = null;
Write
Preview
Loading…
Cancel
Save