5 references to FinishHandshakeAsync
System.Net.Quic (5)
System\Net\Quic\QuicConnection.cs (2)
150/// Set up either in <see cref="FinishHandshakeAsync"/> for an inbound connection or in <see cref="FinishConnectAsync"/> for an outbound. 155/// Set up either in <see cref="FinishHandshakeAsync"/> for an inbound connection or in <see cref="FinishConnectAsync"/> for an outbound.
System\Net\Quic\QuicListener.cs (3)
205/// It does await <see cref="QuicConnection.FinishHandshakeAsync"/> but that never gets propagated to the caller for which the method ends with the first asynchronously processed <c>await</c>. 241await connection.FinishHandshakeAsync(options, clientHello.ServerName, cancellationToken).ConfigureAwait(false); 258ValueTask task = connection.FinishHandshakeAsync(null!, null!, default);