7 references to AbortException
System.Net.Http (7)
System\Net\Http\SocketsHttpHandler\Http3RequestStream.cs (7)
309
Exception innerException = _connection.
AbortException
?? HttpProtocolException.CreateHttp3StreamException(code, ex);
329
catch (QuicException ex) when (ex.QuicError == QuicError.OperationAborted && _connection.
AbortException
!= null)
332
HttpRequestError httpRequestError = _connection.
AbortException
is HttpProtocolException
336
throw new HttpRequestException(httpRequestError, SR.net_http_client_execution_error, _connection.
AbortException
);
1365
case QuicException e when (e.QuicError == QuicError.OperationAborted && _connection.
AbortException
!= null):
1367
HttpRequestError httpRequestError = _connection.
AbortException
is HttpProtocolException
1370
throw new HttpRequestException(httpRequestError, SR.net_http_client_execution_error, _connection.
AbortException
);