5 references to AcceptTcpClientAsync
Aspire.Hosting.Browsers.Tests (1)
BrowserLogsSessionManagerTests.cs (1)
585
using var client = await listener.
AcceptTcpClientAsync
().ConfigureAwait(false);
Microsoft.Extensions.Diagnostics.Probes (1)
TcpEndpointProbesService.cs (1)
89
using var client = await _listener.
AcceptTcpClientAsync
().ConfigureAwait(false);
Microsoft.TestPlatform.CommunicationUtilities (2)
SocketCommunicationManager.cs (1)
121
var client = await _tcpListener.
AcceptTcpClientAsync
();
SocketServer.cs (1)
49
: this(channelFactory, tcpListener => tcpListener.
AcceptTcpClientAsync
())
System.Net.Sockets (1)
System\Net\Sockets\TCPListener.cs (1)
216
TaskToAsyncResult.Begin(
AcceptTcpClientAsync
(), callback, state);