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
Fix UWP support broken in
#1135
release/3.x.x
SilverFox
3 years ago
parent
e174546b5a
commit
df262b5588
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/Implementations/PlatformAbstractionLayer.cs
+ 1
- 1
Source/MQTTnet/Implementations/PlatformAbstractionLayer.cs
View File
@@ -17,7 +17,7 @@ namespace MQTTnet.Implementations
public static void Sleep(TimeSpan timeout)
{
#if !NETSTANDARD1_3
#if !NETSTANDARD1_3
&& !WINDOWS_UWP
System.Threading.Thread.Sleep(timeout);
#else
Task.Delay(timeout).Wait();
Write
Preview
Loading…
Cancel
Save