3 overrides of Abort
Microsoft.AspNetCore.Connections.Abstractions (1)
ConnectionContext.cs (1)
24
public override void
Abort
(ConnectionAbortedException abortReason)
Microsoft.AspNetCore.Server.Kestrel.Core (1)
Middleware\LoggingMultiplexedConnectionMiddleware.cs (1)
52
public override void
Abort
(ConnectionAbortedException abortReason)
Microsoft.AspNetCore.Server.Kestrel.Transport.Quic (1)
src\aspnetcore\src\Servers\Kestrel\shared\TransportMultiplexedConnection.cs (1)
57
public override void
Abort
(ConnectionAbortedException abortReason)
6 references to Abort
Microsoft.AspNetCore.Server.Kestrel.Core (6)
Internal\Http\Http1OutputProducer.cs (1)
476
_connectionContext.
Abort
(error);
Internal\Http2\Http2FrameWriter.cs (1)
468
_connectionContext.
Abort
(error);
Internal\Http3\Http3Connection.cs (2)
143
_multiplexedContext.
Abort
(new ConnectionAbortedException(CoreStrings.ConnectionAbortedByClient));
197
_multiplexedContext.
Abort
(ex);
Internal\Infrastructure\TransportConnectionManager.cs (1)
85
connection.TransportConnection.
Abort
(new ConnectionAbortedException(CoreStrings.ConnectionAbortedDuringServerShutdown));
Middleware\LoggingMultiplexedConnectionMiddleware.cs (1)
54
_inner.
Abort
(abortReason);