4 references to ConnectionTimeout
Microsoft.AspNetCore.Server.Kestrel.Transport.Quic (1)
Internal\QuicConnectionContext.cs (1)
162catch (QuicException ex) when (ex.QuicError == QuicError.ConnectionTimeout)
System.Net.Quic (3)
System\Net\Quic\Internal\ThrowHelper.cs (1)
88if (status == QUIC_STATUS_CONNECTION_TIMEOUT) return new QuicException(QuicError.ConnectionTimeout, null, errorCode, SR.net_quic_timeout);
System\Net\Quic\QuicConnection.cs (1)
89throw new QuicException(QuicError.ConnectionTimeout, null, SR.Format(SR.net_quic_handshake_timeout, options.HandshakeTimeout));
System\Net\Quic\QuicListener.cs (1)
294Exception ex = ExceptionDispatchInfo.SetCurrentStackTrace(new QuicException(QuicError.ConnectionTimeout, null, SR.Format(SR.net_quic_handshake_timeout, handshakeTimeout), oce));