2 implementations of Abort
Microsoft.AspNetCore.Server.Kestrel.Core (2)
Internal\Http3\Http3ControlStream.cs (1)
84public void Abort(ConnectionAbortedException abortReason, Http3ErrorCode errorCode)
Internal\Http3\Http3Stream.cs (1)
143public void Abort(ConnectionAbortedException abortReason, Http3ErrorCode errorCode)
6 references to Abort
InMemory.FunctionalTests (1)
Http3\WebTransport\WebTransportSessionTests.cs (1)
88Http3Api.Connection._streams[session.SessionId].Abort(new(), System.Net.Http.Http3ErrorCode.InternalError);
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);