12 references to MaxFieldSectionSize
InMemory.FunctionalTests (9)
Http3\Http3ConnectionTests.cs (3)
404Assert.Equal((long)Http3SettingType.MaxFieldSectionSize, kvp.Key); 411new Http3PeerSetting(Http3SettingType.MaxFieldSectionSize, 100) 416Assert.Equal(Http3SettingType.MaxFieldSectionSize, maxFieldSetting.Key);
Http3\Http3StreamTests.cs (6)
2813new Http3PeerSetting(Core.Internal.Http3.Http3SettingType.MaxFieldSectionSize, 100) 2818Assert.Equal(Core.Internal.Http3.Http3SettingType.MaxFieldSectionSize, maxFieldSetting.Key); 3042new Http3PeerSetting(Internal.Http3.Http3SettingType.MaxFieldSectionSize, 100), 3050var parameterLength = VariableLengthIntegerHelper.WriteInteger(outboundcontrolStream.Pair.Application.Output.GetSpan(), (long)Internal.Http3.Http3SettingType.MaxFieldSectionSize); 3230new Http3PeerSetting(Internal.Http3.Http3SettingType.MaxFieldSectionSize, 100), 3248Assert.Equal(Internal.Http3.Http3SettingType.MaxFieldSectionSize, fieldSetting.Key);
Microsoft.AspNetCore.Server.Kestrel.Core (3)
Internal\Http3\Http3Connection.cs (1)
873case Http3SettingType.MaxFieldSectionSize:
Internal\Http3\Http3ControlStream.cs (1)
418case (long)Http3SettingType.MaxFieldSectionSize:
Internal\Http3\Http3PeerSettings.cs (1)
33list.Add(new Http3PeerSetting(Http3SettingType.MaxFieldSectionSize, MaxRequestHeaderFieldSectionSize));