3 implementations of Abort
Microsoft.AspNetCore.Http.Connections (1)
Internal\HttpConnectionContext.cs (1)
213
public override void
Abort
()
Microsoft.AspNetCore.Server.Kestrel.Transport.Quic (2)
src\aspnetcore\src\Servers\Kestrel\shared\TransportConnection.FeatureCollection.cs (1)
40
void IConnectionLifetimeFeature.
Abort
() => Abort(new ConnectionAbortedException("The connection was aborted by the application via IConnectionLifetimeFeature.Abort()."));
src\aspnetcore\src\Servers\Kestrel\shared\TransportMultiplexedConnection.FeatureCollection.cs (1)
31
void IConnectionLifetimeFeature.
Abort
() => Abort(new ConnectionAbortedException("The connection was aborted by the application via IConnectionLifetimeFeature.Abort()."));
1 reference to Abort
Microsoft.AspNetCore.Connections.Abstractions (1)
ConnectionContext.cs (1)
29
Features.Get<IConnectionLifetimeFeature>()?.
Abort
();