3 writes to Enabled
Microsoft.Diagnostics.NETCore.Client (2)
DiagnosticsIpc\IpcServerTransport.cs (2)
258socket.LingerState.Enabled = false; 287socket.LingerState.Enabled = false;
System.Net.Sockets (1)
System\Net\Sockets\LingerOption.cs (1)
15Enabled = enable;
3 references to Enabled
System.Net.Sockets (3)
System\Net\Sockets\LingerOption.cs (1)
47return comparand is LingerOption option && option.Enabled == _enabled && option.LingerTime == _lingerTime;
System\Net\Sockets\Socket.cs (1)
3686if (OperatingSystem.IsWasi() && lref.Enabled) throw new PlatformNotSupportedException(); // TODO remove with https://github.com/dotnet/runtime/pull/107185
System\Net\Sockets\SocketPal.Unix.cs (1)
1575OnOff = optionValue.Enabled ? 1 : 0,