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