22 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)
470Assert.Equal(QuicError.StreamAborted, ex.QuicError); 523Assert.Equal(QuicError.StreamAborted, clientEx.QuicError);
System.Net.Http (7)
System\Net\Http\SocketsHttpHandler\Http3Connection.cs (3)
483if (t.Exception?.InnerException is QuicException ex && ex.QuicError == QuicError.StreamAborted) 590catch (QuicException ex) when (ex.QuicError == QuicError.StreamAborted) 784catch (QuicException ex) when (ex.QuicError == QuicError.StreamAborted)
System\Net\Http\SocketsHttpHandler\Http3RequestStream.cs (4)
225catch (QuicException qex) when (qex.QuicError == QuicError.StreamAborted && qex.ApplicationErrorCode == (long)Http3ErrorCode.NoError) 275catch (QuicException ex) when (ex.QuicError == QuicError.StreamAborted) 482catch (HttpRequestException hex) when (hex.InnerException is QuicException qex && qex.QuicError == QuicError.StreamAborted && qex.ApplicationErrorCode == (long)Http3ErrorCode.NoError) 1299case 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.