17 references to Unknown
System.Net.Http (17)
System\Net\Http\HttpContent.cs (1)
707
HttpRequestError error = e is HttpIOException ioEx ? ioEx.HttpRequestError : HttpRequestError.
Unknown
;
System\Net\Http\SocketsHttpHandler\Http2Connection.cs (3)
1875
var ex = new HttpIOException(HttpRequestError.
Unknown
, SR.net_http_http2_frame_limit_exceeded);
2179
throw new HttpRequestException(HttpRequestError.
Unknown
, SR.net_http_client_execution_error, e);
2281
throw new HttpRequestException((innerException as HttpIOException)?.HttpRequestError ?? HttpRequestError.
Unknown
, message, innerException, RequestRetryType.RetryOnConnectionFailure);
System\Net\Http\SocketsHttpHandler\Http3Connection.cs (3)
318
throw new HttpRequestException(HttpRequestError.
Unknown
, SR.net_http_request_aborted, null, RequestRetryType.RetryOnConnectionFailure);
331
throw new HttpRequestException(HttpRequestError.
Unknown
, SR.net_http_request_aborted, null, RequestRetryType.RetryOnConnectionFailure);
349
throw new HttpRequestException(HttpRequestError.
Unknown
, SR.net_http_client_execution_error, _abortException, RequestRetryType.RetryOnConnectionFailure);
System\Net\Http\SocketsHttpHandler\Http3RequestStream.cs (9)
300
throw new HttpRequestException(HttpRequestError.
Unknown
, SR.net_http_retry_on_older_version, ex, RequestRetryType.RetryOnLowerHttpVersion);
310
HttpRequestError httpRequestError = innerException is HttpProtocolException ? HttpRequestError.HttpProtocolError : HttpRequestError.
Unknown
;
334
: HttpRequestError.
Unknown
;
342
throw new HttpRequestException(HttpRequestError.
Unknown
, SR.net_http_http3_connection_quic_error, ex);
356
throw new HttpRequestException(HttpRequestError.
Unknown
, SR.net_http_request_aborted, ex, RequestRetryType.RetryOnConnectionFailure);
372
throw new HttpRequestException(HttpRequestError.
Unknown
, SR.net_http_client_execution_error, ex);
384
throw new HttpRequestException(HttpRequestError.
Unknown
, SR.net_http_client_execution_error, ex);
1362
: HttpRequestError.
Unknown
;
1382
throw new HttpIOException(HttpRequestError.
Unknown
, SR.net_http_client_execution_error, new HttpRequestException(SR.net_http_client_execution_error, ex));
System\Net\Http\SocketsHttpHandler\HttpConnection.cs (1)
937
HttpRequestError error = ioe is HttpIOException httpIoe ? httpIoe.HttpRequestError : HttpRequestError.
Unknown
;