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
Refactoring
release/3.x.x
Christian
6 years ago
parent
002e4b8d69
commit
40c33ac639
3 changed files
with
2 additions
and
3 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-1
Frameworks/MQTTnet.NetStandard/Client/MqttPacketDispatcher.cs
+1
-1
Frameworks/MQTTnet.NetStandard/Internal/TaskExtensions.cs
+0
-1
Frameworks/MQTTnet.NetStandard/Server/IMqttServerOptions.cs
+ 1
- 1
Frameworks/MQTTnet.NetStandard/Client/MqttPacketDispatcher.cs
View File
@@ -83,7 +83,7 @@ namespace MQTTnet.Client
{
_packetByResponseType[responseType] = tcs;
}
return tcs;
}
+ 1
- 1
Frameworks/MQTTnet.NetStandard/Internal/TaskExtensions.cs
View File
@@ -30,7 +30,7 @@ namespace MQTTnet.Internal
if (task.IsFaulted)
{
throw new MqttCommunicationException(task.Exception.GetBaseException());
throw new MqttCommunicationException(task.Exception
?
.GetBaseException());
}
}
finally
+ 0
- 1
Frameworks/MQTTnet.NetStandard/Server/IMqttServerOptions.cs
View File
@@ -1,5 +1,4 @@
using System;
using System.Net;
namespace MQTTnet.Server
{
Write
Preview
Loading…
Cancel
Save