8 overrides of Abort
InMemory.FunctionalTests (2)
src\Servers\Kestrel\shared\test\Http3\Http3InMemory.cs (1)
1029public override void Abort()
src\Servers\Kestrel\shared\test\TestContextFactory.cs (1)
241public override void 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 (1)
Middleware\LoggingMultiplexedConnectionMiddleware.cs (1)
47public override void Abort()
Microsoft.AspNetCore.Server.Kestrel.Core.Tests (1)
src\Servers\Kestrel\shared\test\TestContextFactory.cs (1)
241public override void Abort()
Microsoft.AspNetCore.Server.Kestrel.Microbenchmarks (2)
src\Servers\Kestrel\shared\test\Http3\Http3InMemory.cs (1)
1029public override void Abort()
src\Servers\Kestrel\shared\test\TestContextFactory.cs (1)
241public override void Abort()
Microsoft.AspNetCore.Server.Kestrel.Transport.Quic (1)
Internal\QuicConnectionContext.cs (1)
73public override void Abort() => Abort(new ConnectionAbortedException("The connection was aborted by the application via MultiplexedConnectionContext.Abort()."));
3 references to Abort
Interop.FunctionalTests (1)
Http3\Http3RequestTests.cs (1)
1766connection.Abort();
Microsoft.AspNetCore.Server.Kestrel.Core (1)
Middleware\LoggingMultiplexedConnectionMiddleware.cs (1)
49_inner.Abort();
Microsoft.AspNetCore.Server.Kestrel.Transport.Quic.Tests (1)
QuicConnectionContextTests.cs (1)
44serverConnection.Abort(); // Doesn't throw ODE.