11 references to StreamAborted
Microsoft.AspNetCore.Server.Kestrel.Transport.Quic (2)
Internal\QuicStreamContext.cs (2)
273catch (QuicException ex) when (ex.QuicError is QuicError.StreamAborted or QuicError.ConnectionAborted) 434catch (QuicException ex) when (ex.QuicError is QuicError.StreamAborted or QuicError.ConnectionAborted)
System.Net.Http (7)
System\Net\Http\SocketsHttpHandler\Http3Connection.cs (3)
493if (t.Exception?.InnerException is QuicException ex && ex.QuicError == QuicError.StreamAborted) 605catch (QuicException ex) when (ex.QuicError == QuicError.StreamAborted) 786catch (QuicException ex) when (ex.QuicError == QuicError.StreamAborted)
System\Net\Http\SocketsHttpHandler\Http3RequestStream.cs (4)
247catch (QuicException qex) when (qex.QuicError == QuicError.StreamAborted && qex.ApplicationErrorCode == (long)Http3ErrorCode.NoError) 291catch (QuicException ex) when (ex.QuicError == QuicError.StreamAborted) 516catch (HttpRequestException hex) when (hex.InnerException is QuicException qex && qex.QuicError == QuicError.StreamAborted && qex.ApplicationErrorCode == (long)Http3ErrorCode.NoError) 1346case QuicException e when (e.QuicError == QuicError.StreamAborted):
System.Net.Quic (2)
System\Net\Quic\Internal\ThrowHelper.cs (1)
25return 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.