2 implementations of Abort
Microsoft.AspNetCore.Server.Kestrel.Core (2)
Internal\Http3\Http3ControlStream.cs (1)
78
public void
Abort
(ConnectionAbortedException abortReason, Http3ErrorCode errorCode)
Internal\Http3\Http3Stream.cs (1)
144
public void
Abort
(ConnectionAbortedException abortReason, Http3ErrorCode errorCode)
5 references to Abort
Microsoft.AspNetCore.Server.Kestrel.Core (5)
Internal\Http3\Http3Connection.cs (3)
297
stream.
Abort
(new ConnectionAbortedException(CoreStrings.BadRequest_RequestHeadersTimeout), Http3ErrorCode.RequestRejected);
301
stream.
Abort
(new ConnectionAbortedException(CoreStrings.Http3ControlStreamHeaderTimeout), Http3ErrorCode.StreamCreationError);
518
stream.
Abort
(CreateConnectionAbortError(error, clientAbort), errorCode);
Internal\Http3\Http3FrameWriter.cs (2)
322
_http3Stream.
Abort
(new ConnectionAbortedException(ex.Message, ex), Http3ErrorCode.InternalError);
377
_http3Stream.
Abort
(new ConnectionAbortedException(ex.Message, ex), Http3ErrorCode.InternalError);