Base:
method
Abort
Microsoft.AspNetCore.Connections.BaseConnectionContext.Abort(Microsoft.AspNetCore.Connections.ConnectionAbortedException)
4 overrides of Abort
Microsoft.AspNetCore.Connections.Abstractions (1)
DefaultConnectionContext.cs (1)
99public override void Abort(ConnectionAbortedException abortReason)
Microsoft.AspNetCore.Server.Kestrel.Core (2)
Internal\WebTransport\WebTransportStream.cs (1)
77public override void Abort(ConnectionAbortedException abortReason)
Middleware\LoggingMultiplexedConnectionMiddleware.cs (1)
106public override void Abort(ConnectionAbortedException abortReason)
Microsoft.AspNetCore.Server.Kestrel.Transport.Quic (1)
src\aspnetcore\src\Servers\Kestrel\shared\TransportConnection.cs (1)
70public override void Abort(ConnectionAbortedException abortReason)
6 references to Abort
Microsoft.AspNetCore.Connections.Abstractions (1)
ConnectionContext.cs (1)
35public override void Abort() => Abort(new ConnectionAbortedException("The connection was aborted by the application via ConnectionContext.Abort()."));
Microsoft.AspNetCore.Server.Kestrel.Core (5)
Internal\Http3\Http3Connection.cs (1)
603streamContext.Abort(new ConnectionAbortedException("HTTP/3 connection is closing and no longer accepts new requests."));
Internal\Http3\Http3FrameWriter.cs (3)
321_connectionContext.Abort(new ConnectionAbortedException(ex.Message, ex)); 376_connectionContext.Abort(new ConnectionAbortedException(ex.Message, ex)); 435_connectionContext.Abort(error);
Middleware\LoggingMultiplexedConnectionMiddleware.cs (1)
108_inner.Abort(abortReason);