3 overrides of 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 (1)
Middleware\LoggingMultiplexedConnectionMiddleware.cs (1)
47
public override void
Abort
()
Microsoft.AspNetCore.Server.Kestrel.Transport.Quic (1)
Internal\QuicConnectionContext.cs (1)
73
public override void
Abort
() => Abort(new ConnectionAbortedException("The connection was aborted by the application via MultiplexedConnectionContext.Abort()."));
1 reference to Abort
Microsoft.AspNetCore.Server.Kestrel.Core (1)
Middleware\LoggingMultiplexedConnectionMiddleware.cs (1)
49
_inner.
Abort
();