5 references to FinishHandshakeAsync
System.Net.Quic (5)
System\Net\Quic\QuicConnection.cs (2)
157
/// Set up either in <see cref="
FinishHandshakeAsync
"/> for an inbound connection or in <see cref="FinishConnectAsync"/> for an outbound.
162
/// 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)
211
/// 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>.
247
await connection.
FinishHandshakeAsync
(options, clientHello.ServerName, cancellationToken).ConfigureAwait(false);
298
ValueTask task = connection.
FinishHandshakeAsync
(null!, null!, default);