20 references to StreamAborted
IIS.FunctionalTests (4)
Http3Tests.cs (4)
125Assert.Equal(QuicError.StreamAborted, qex.QuicError); 141Assert.Equal(QuicError.StreamAborted, qex.QuicError); 158Assert.Equal(QuicError.StreamAborted, qex.QuicError); 172Assert.Equal(QuicError.StreamAborted, qex.QuicError);
Microsoft.AspNetCore.Server.HttpSys.FunctionalTests (4)
Http3Tests.cs (4)
178Assert.Equal(QuicError.StreamAborted, qex.QuicError); 211Assert.Equal(QuicError.StreamAborted, qex.QuicError); 237Assert.Equal(QuicError.StreamAborted, qex.QuicError); 258Assert.Equal(QuicError.StreamAborted, qex.QuicError);
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)
Microsoft.AspNetCore.Server.Kestrel.Transport.Quic.Tests (3)
QuicConnectionContextTests.cs (1)
488Assert.Equal(QuicError.StreamAborted, clientEx.QuicError);
QuicStreamContextTests.cs (2)
469Assert.Equal(QuicError.StreamAborted, ex.QuicError); 522Assert.Equal(QuicError.StreamAborted, clientEx.QuicError);
System.Net.Http (5)
System\Net\Http\SocketsHttpHandler\Http3Connection.cs (3)
388if (t.Exception?.InnerException is QuicException ex && ex.QuicError == QuicError.StreamAborted) 495catch (QuicException ex) when (ex.QuicError == QuicError.StreamAborted) 689catch (QuicException ex) when (ex.QuicError == QuicError.StreamAborted)
System\Net\Http\SocketsHttpHandler\Http3RequestStream.cs (2)
246catch (QuicException ex) when (ex.QuicError == QuicError.StreamAborted) 1261case QuicException e when (e.QuicError == QuicError.StreamAborted):
System.Net.Quic (2)
System\Net\Quic\Internal\ThrowHelper.cs (1)
23return 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.