7 references to AbortException
System.Net.Http (7)
System\Net\Http\SocketsHttpHandler\Http3RequestStream.cs (7)
293
Exception innerException = _connection.
AbortException
?? HttpProtocolException.CreateHttp3StreamException(code, ex);
313
catch (QuicException ex) when (ex.QuicError == QuicError.OperationAborted && _connection.
AbortException
!= null)
316
HttpRequestError httpRequestError = _connection.
AbortException
is HttpProtocolException
320
throw new HttpRequestException(httpRequestError, SR.net_http_client_execution_error, _connection.
AbortException
);
1311
case QuicException e when (e.QuicError == QuicError.OperationAborted && _connection.
AbortException
!= null):
1313
HttpRequestError httpRequestError = _connection.
AbortException
is HttpProtocolException
1316
throw new HttpRequestException(httpRequestError, SR.net_http_client_execution_error, _connection.
AbortException
);