16 references to Headers
InMemory.FunctionalTests (7)
Http3\Http3ConnectionTests.cs (2)
103Assert.Equal(Http3FrameType.Headers, frame.Type); 273[InlineData(nameof(Http3FrameType.Headers))]
Http3\Http3StreamTests.cs (2)
3143Http3FrameWriter.WriteHeader(Http3FrameType.Headers, frameLength: 38, bufferPipe.Writer); 3192Http3FrameWriter.WriteHeader(Http3FrameType.Headers, frameLength: 22, bufferPipe.Writer);
src\Servers\Kestrel\shared\test\Http3\Http3InMemory.cs (3)
727await SendFrameAsync(Http3FrameType.Headers, buffer.Slice(0, length), endStream); 757Http3InMemory.AssertFrameType(http3WithPayload.Type, Http3FrameType.Headers); 774Http3InMemory.AssertFrameType(http3WithPayload.Type, Http3FrameType.Headers);
Microsoft.AspNetCore.Server.Kestrel.Core (5)
Internal\Http3\Frames\Http3RawFrame.Headers.cs (1)
11Type = Http3FrameType.Headers;
Internal\Http3\Http3ControlStream.cs (1)
331case Http3FrameType.Headers:
Internal\Http3\Http3Formatting.cs (1)
15Http3FrameType.Headers => "HEADERS",
Internal\Http3\Http3Stream.cs (2)
781Http3FrameType.Headers => ProcessHeadersFrameAsync(application, incomingFrame, isContinuedFrame, payload, isCompleted), 811throw new Http3ConnectionErrorException(CoreStrings.FormatHttp3StreamErrorFrameReceivedAfterTrailers(Http3Formatting.ToFormattedType(Http3FrameType.Headers)), Http3ErrorCode.UnexpectedFrame, ConnectionEndReason.UnexpectedFrame);
Microsoft.AspNetCore.Server.Kestrel.Microbenchmarks (4)
Http3\Http3ConnectionBenchmarkBase.cs (1)
79case System.Net.Http.Http3FrameType.Headers:
src\Servers\Kestrel\shared\test\Http3\Http3InMemory.cs (3)
727await SendFrameAsync(Http3FrameType.Headers, buffer.Slice(0, length), endStream); 757Http3InMemory.AssertFrameType(http3WithPayload.Type, Http3FrameType.Headers); 774Http3InMemory.AssertFrameType(http3WithPayload.Type, Http3FrameType.Headers);