5 references to ConnectionAborted
Microsoft.AspNetCore.Server.Kestrel.Transport.Quic (3)
Internal\QuicConnectionContext.cs (1)
131catch (QuicException ex) when (ex.QuicError == QuicError.ConnectionAborted)
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)
Microsoft.AspNetCore.Server.Kestrel.Transport.Quic.Tests (2)
QuicConnectionContextTests.cs (2)
140Assert.Equal(QuicError.ConnectionAborted, innerEx.QuicError); 303Assert.Equal(QuicError.ConnectionAborted, innerEx.QuicError);