12 references to ConnectionAborted
Microsoft.AspNetCore.Server.Kestrel.Transport.Quic (3)
Internal\QuicConnectionContext.cs (1)
131
catch (QuicException ex) when (ex.QuicError == QuicError.
ConnectionAborted
)
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
)
Microsoft.AspNetCore.Server.Kestrel.Transport.Quic.Tests (2)
QuicConnectionContextTests.cs (2)
140
Assert.Equal(QuicError.
ConnectionAborted
, innerEx.QuicError);
303
Assert.Equal(QuicError.
ConnectionAborted
, innerEx.QuicError);
System.Net.Http (5)
System\Net\Http\SocketsHttpHandler\Http3Connection.cs (3)
481
catch (QuicException ex) when (ex.QuicError == QuicError.
ConnectionAborted
)
542
catch (QuicException ex) when (ex.QuicError == QuicError.
ConnectionAborted
)
677
catch (QuicException ex) when (ex.QuicError == QuicError.
ConnectionAborted
)
System\Net\Http\SocketsHttpHandler\Http3RequestStream.cs (2)
294
catch (QuicException ex) when (ex.QuicError == QuicError.
ConnectionAborted
)
1296
case QuicException e when (e.QuicError == QuicError.
ConnectionAborted
):
System.Net.Quic (2)
System\Net\Quic\Internal\ThrowHelper.cs (1)
20
return new QuicException(QuicError.
ConnectionAborted
, errorCode, SR.Format(SR.net_quic_connectionaborted, 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.