2 implementations of Abort
Microsoft.AspNetCore.Server.Kestrel.Core (2)
Internal\Http3\Http3ControlStream.cs (1)
78public void Abort(ConnectionAbortedException abortReason, Http3ErrorCode errorCode)
Internal\Http3\Http3Stream.cs (1)
144public void Abort(ConnectionAbortedException abortReason, Http3ErrorCode errorCode)
5 references to Abort
Microsoft.AspNetCore.Server.Kestrel.Core (5)
Internal\Http3\Http3Connection.cs (3)
297stream.Abort(new ConnectionAbortedException(CoreStrings.BadRequest_RequestHeadersTimeout), Http3ErrorCode.RequestRejected); 301stream.Abort(new ConnectionAbortedException(CoreStrings.Http3ControlStreamHeaderTimeout), Http3ErrorCode.StreamCreationError); 518stream.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);