Beispiel #1
0
 // We cannot use the _NoDelay_ property from the socket because there is an issue in .NET 4.5.2, 4.6.
 // The decompiled code is: this.SetSocketOption(SocketOptionLevel.Tcp, SocketOptionName.Debug, value ? 1 : 0);
 // Which is wrong because the "NoDelay" should be set and not "Debug".
 get => (int?)_socket.GetSocketOption(SocketOptionLevel.Tcp, SocketOptionName.NoDelay) != 0;
Beispiel #2
0
 get => (bool)client.Client.GetSocketOption(SocketOptionLevel.Tcp, SocketOptionName.NoDelay);