4 references to AcceptConnectionAsync
Microsoft.AspNetCore.Server.Kestrel.Transport.Quic (1)
Internal\QuicConnectionListener.cs (1)
157var quicConnection = await _listener.AcceptConnectionAsync(cancellationToken);
System.Net.Quic (3)
System\Net\Quic\QuicConnection.cs (1)
32/// <see cref="QuicConnection" /> can either be accepted from <see cref="QuicListener.AcceptConnectionAsync(CancellationToken)" /> (inbound connection),
System\Net\Quic\QuicListener.cs (2)
99/// Starts as <see cref="QuicListenerOptions.ListenBacklog"/>, decrements with each NEW_CONNECTION, increments with <see cref="AcceptConnectionAsync" />. 201/// Kicks off the handshake process. It doesn't propagate the result outside directly but rather stores it in <c>_acceptQueue</c> for <see cref="AcceptConnectionAsync" />.