22 references to StreamAborted
IIS.FunctionalTests (4)
Http3Tests.cs (4)
125
Assert.Equal(QuicError.
StreamAborted
, qex.QuicError);
141
Assert.Equal(QuicError.
StreamAborted
, qex.QuicError);
158
Assert.Equal(QuicError.
StreamAborted
, qex.QuicError);
172
Assert.Equal(QuicError.
StreamAborted
, qex.QuicError);
Microsoft.AspNetCore.Server.HttpSys.FunctionalTests (4)
Http3Tests.cs (4)
178
Assert.Equal(QuicError.
StreamAborted
, qex.QuicError);
211
Assert.Equal(QuicError.
StreamAborted
, qex.QuicError);
237
Assert.Equal(QuicError.
StreamAborted
, qex.QuicError);
258
Assert.Equal(QuicError.
StreamAborted
, qex.QuicError);
Microsoft.AspNetCore.Server.Kestrel.Transport.Quic (2)
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 (3)
QuicConnectionContextTests.cs (1)
488
Assert.Equal(QuicError.
StreamAborted
, clientEx.QuicError);
QuicStreamContextTests.cs (2)
470
Assert.Equal(QuicError.
StreamAborted
, ex.QuicError);
523
Assert.Equal(QuicError.
StreamAborted
, clientEx.QuicError);
System.Net.Http (7)
System\Net\Http\SocketsHttpHandler\Http3Connection.cs (3)
483
if (t.Exception?.InnerException is QuicException ex && ex.QuicError == QuicError.
StreamAborted
)
590
catch (QuicException ex) when (ex.QuicError == QuicError.
StreamAborted
)
784
catch (QuicException ex) when (ex.QuicError == QuicError.
StreamAborted
)
System\Net\Http\SocketsHttpHandler\Http3RequestStream.cs (4)
225
catch (QuicException qex) when (qex.QuicError == QuicError.
StreamAborted
&& qex.ApplicationErrorCode == (long)Http3ErrorCode.NoError)
275
catch (QuicException ex) when (ex.QuicError == QuicError.
StreamAborted
)
482
catch (HttpRequestException hex) when (hex.InnerException is QuicException qex && qex.QuicError == QuicError.
StreamAborted
&& qex.ApplicationErrorCode == (long)Http3ErrorCode.NoError)
1299
case QuicException e when (e.QuicError == QuicError.
StreamAborted
):
System.Net.Quic (2)
System\Net\Quic\Internal\ThrowHelper.cs (1)
25
return 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.