We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5a5921d commit fbc40c3Copy full SHA for fbc40c3
NetSdrClientApp/Networking/TcpClientWrapper.cs
@@ -16,7 +16,7 @@ public class TcpClientWrapper : ITcpClient
16
private readonly int _port;
17
private TcpClient? _tcpClient;
18
private NetworkStream? _stream;
19
- private CancellationTokenSource _cts;
+ private CancellationTokenSource? _cts;
20
21
public bool Connected => _tcpClient != null && _tcpClient.Connected && _stream != null;
22
0 commit comments