6 references to QuicException
System.Net.Quic (6)
System\Net\Quic\Internal\ThrowHelper.cs (5)
18return new QuicException(QuicError.ConnectionAborted, errorCode, SR.Format(SR.net_quic_connectionaborted, errorCode)); 23return new QuicException(QuicError.StreamAborted, errorCode, SR.Format(SR.net_quic_streamaborted, errorCode)); 28return new QuicException(QuicError.OperationAborted, null, message ?? SR.net_quic_operationaborted); 49exception = new QuicException(QuicError.ConnectionAborted, null, ""); 143return new QuicException(QuicError.InternalError, null, SR.Format(SR.net_quic_internal_error, GetErrorMessageForStatus(status, message)));
System\Net\Quic\QuicConnection.cs (1)
89throw new QuicException(QuicError.ConnectionTimeout, null, SR.Format(SR.net_quic_handshake_timeout, options.HandshakeTimeout));