11 references to StreamAborted
Microsoft.AspNetCore.Server.Kestrel.Transport.Quic (2)
Internal\QuicStreamContext.cs (2)
273
catch (QuicException ex) when (ex.QuicError is QuicError.
StreamAborted
or QuicError.ConnectionAborted)
434
catch (QuicException ex) when (ex.QuicError is QuicError.
StreamAborted
or QuicError.ConnectionAborted)
System.Net.Http (7)
System\Net\Http\SocketsHttpHandler\Http3Connection.cs (3)
493
if (t.Exception?.InnerException is QuicException ex && ex.QuicError == QuicError.
StreamAborted
)
605
catch (QuicException ex) when (ex.QuicError == QuicError.
StreamAborted
)
786
catch (QuicException ex) when (ex.QuicError == QuicError.
StreamAborted
)
System\Net\Http\SocketsHttpHandler\Http3RequestStream.cs (4)
247
catch (QuicException qex) when (qex.QuicError == QuicError.
StreamAborted
&& qex.ApplicationErrorCode == (long)Http3ErrorCode.NoError)
291
catch (QuicException ex) when (ex.QuicError == QuicError.
StreamAborted
)
516
catch (HttpRequestException hex) when (hex.InnerException is QuicException qex && qex.QuicError == QuicError.
StreamAborted
&& qex.ApplicationErrorCode == (long)Http3ErrorCode.NoError)
1346
case QuicException e when (e.QuicError == QuicError.
StreamAborted
):
System.Net.Quic (2)
System\Net\Quic\Internal\ThrowHelper.cs (1)
25
return new QuicException(QuicError.
StreamAborted
, errorCode, SR.Format(SR.net_quic_streamaborted, errorCode));
System\Net\Quic\QuicException.cs (1)
70
/// This property contains the error code set by the application layer when closing the connection (<see cref="QuicError.ConnectionAborted"/>) or closing a read/write direction of a QUIC stream (<see cref="QuicError.
StreamAborted
"/>). Contains null for all other errors.