5 writes to Blocking
Microsoft.Diagnostics.NETCore.Client (4)
DiagnosticsServerRouter\DiagnosticsServerRouterFactory.cs (2)
91networkStream.Socket.Blocking = false; 111networkStream.Socket.Blocking = blockingState;
ReversedServer\ReversedDiagnosticsServer.cs (2)
388socket.Blocking = false; 396socket.Blocking = blocking;
System.Net.Mail (1)
System\Net\Mail\SmtpConnection.cs (1)
270_tcpClient.Client.Blocking = false;
8 references to Blocking
Microsoft.Diagnostics.NETCore.Client (2)
DiagnosticsServerRouter\DiagnosticsServerRouterFactory.cs (1)
85bool blockingState = networkStream.Socket.Blocking;
ReversedServer\ReversedDiagnosticsServer.cs (1)
385bool blocking = socket.Blocking;
System.Net.Sockets (6)
System\Net\Sockets\NetworkStream.cs (1)
49if (!OperatingSystem.IsWasi() && !socket.Blocking)
System\Net\Sockets\Socket.cs (3)
112/// differ based on operating system, such as <see cref="Socket.ProtocolType"/> and <see cref="Socket.Blocking"/>. 870_nonBlockingConnectInProgress = !Blocking; 1331if (!Blocking)
System\Net\Sockets\TCPListener.cs (2)
191if (OperatingSystem.IsWasi() && _serverSocket!.Blocking) throw new PlatformNotSupportedException("Only use with Socket.Blocking=false on WASI"); 203if (OperatingSystem.IsWasi() && _serverSocket!.Blocking) throw new PlatformNotSupportedException("Only use with Socket.Blocking=false on WASI");