11 references to OperationAborted
Microsoft.AspNetCore.Server.Kestrel.Transport.Quic (4)
Internal\QuicConnectionContext.cs (1)
147catch (QuicException ex) when (ex.QuicError == QuicError.OperationAborted)
Internal\QuicConnectionListener.cs (1)
176catch (QuicException ex) when (ex.QuicError == QuicError.OperationAborted)
Internal\QuicStreamContext.cs (2)
292catch (QuicException ex) when (ex.QuicError is QuicError.OperationAborted) 453catch (QuicException ex) when (ex.QuicError is QuicError.OperationAborted)
System.Net.Http (6)
System\Net\Http\SocketsHttpHandler\Http3Connection.cs (4)
195catch (QuicException e) when (e.QuicError != QuicError.OperationAborted) { } 238catch (QuicException ex) when (ex.QuicError == QuicError.OperationAborted) 453catch (QuicException ex) when (ex.QuicError == QuicError.OperationAborted) 588catch (QuicException ex) when (ex.QuicError == QuicError.OperationAborted)
System\Net\Http\SocketsHttpHandler\Http3RequestStream.cs (2)
278catch (QuicException ex) when (ex.QuicError == QuicError.OperationAborted && _connection.AbortException != null) 1273case QuicException e when (e.QuicError == QuicError.OperationAborted && _connection.AbortException != null):
System.Net.Quic (1)
System\Net\Quic\Internal\ThrowHelper.cs (1)
28return new QuicException(QuicError.OperationAborted, null, message ?? SR.net_quic_operationaborted);