Base:
method
Abort
Microsoft.AspNetCore.Connections.BaseConnectionContext.Abort(Microsoft.AspNetCore.Connections.ConnectionAbortedException)
4 overrides of Abort
Microsoft.AspNetCore.Connections.Abstractions (1)
DefaultConnectionContext.cs (1)
99
public override void
Abort
(ConnectionAbortedException abortReason)
Microsoft.AspNetCore.Server.Kestrel.Core (2)
Internal\WebTransport\WebTransportStream.cs (1)
77
public override void
Abort
(ConnectionAbortedException abortReason)
Middleware\LoggingMultiplexedConnectionMiddleware.cs (1)
106
public override void
Abort
(ConnectionAbortedException abortReason)
Microsoft.AspNetCore.Server.Kestrel.Transport.Quic (1)
src\aspnetcore\src\Servers\Kestrel\shared\TransportConnection.cs (1)
70
public override void
Abort
(ConnectionAbortedException abortReason)
6 references to Abort
Microsoft.AspNetCore.Connections.Abstractions (1)
ConnectionContext.cs (1)
35
public 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)
603
streamContext.
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);