2 writes to MaxRequestHeaderFieldSectionSize
Microsoft.AspNetCore.Server.Kestrel.Core (2)
Internal\Http3\Http3Connection.cs (2)
65_serverSettings.MaxRequestHeaderFieldSectionSize = (uint)httpLimits.MaxRequestHeadersTotalSize; 874_clientSettings.MaxRequestHeaderFieldSectionSize = (uint)value;
4 references to MaxRequestHeaderFieldSectionSize
Microsoft.AspNetCore.Server.Kestrel.Core (4)
Internal\Http3\Http3FrameWriter.cs (2)
76_maxTotalHeaderSize = clientPeerSettings.MaxRequestHeaderFieldSectionSize > int.MaxValue 78: (int)clientPeerSettings.MaxRequestHeaderFieldSectionSize;
Internal\Http3\Http3PeerSettings.cs (2)
31if (MaxRequestHeaderFieldSectionSize != DefaultMaxRequestHeaderFieldSize) 33list.Add(new Http3PeerSetting(Http3SettingType.MaxFieldSectionSize, MaxRequestHeaderFieldSectionSize));