7 references to AbortException
System.Net.Http (7)
System\Net\Http\SocketsHttpHandler\Http3RequestStream.cs (7)
289
Exception innerException = _connection.
AbortException
?? HttpProtocolException.CreateHttp3StreamException(code, ex);
309
catch (QuicException ex) when (ex.QuicError == QuicError.OperationAborted && _connection.
AbortException
!= null)
312
HttpRequestError httpRequestError = _connection.
AbortException
is HttpProtocolException
316
throw new HttpRequestException(httpRequestError, SR.net_http_client_execution_error, _connection.
AbortException
);
1303
case QuicException e when (e.QuicError == QuicError.OperationAborted && _connection.
AbortException
!= null):
1305
HttpRequestError httpRequestError = _connection.
AbortException
is HttpProtocolException
1308
throw new HttpRequestException(httpRequestError, SR.net_http_client_execution_error, _connection.
AbortException
);