5 writes to Blocking
Microsoft.WebTools.AspireService.Tests (4)
Mocks\Helpers.cs (4)
84ipv4Socket.Blocking = false; 103ipv4Socket.Blocking = true; 113ipv6Socket.Blocking = false; 130ipv6Socket.Blocking = true;
System.Net.Mail (1)
System\Net\Mail\SmtpConnection.cs (1)
270_tcpClient.Client.Blocking = false;
5 references to Blocking
System.Net.Sockets (5)
System\Net\Sockets\NetworkStream.cs (1)
49if (!OperatingSystem.IsWasi() && !socket.Blocking)
System\Net\Sockets\Socket.cs (2)
112/// differ based on operating system, such as <see cref="Socket.ProtocolType"/> and <see cref="Socket.Blocking"/>. 869_nonBlockingConnectInProgress = !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");