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