19 references to Http3SettingType
Microsoft.AspNetCore.Server.Kestrel.Core (19)
Internal\Http3\Http3Connection.cs (6)
878void IHttp3StreamLifetimeHandler.OnInboundControlStreamSetting(Http3SettingType type, long value) 882case Http3SettingType.QPackMaxTableCapacity: 884case Http3SettingType.MaxFieldSectionSize: 887case Http3SettingType.QPackBlockedStreams: 889case Http3SettingType.EnableWebTransport: 892case Http3SettingType.H3Datagram:
Internal\Http3\Http3ControlStream.cs (6)
408case (long)Http3SettingType.QPackMaxTableCapacity: 409case (long)Http3SettingType.MaxFieldSectionSize: 410case (long)Http3SettingType.QPackBlockedStreams: 411case (long)Http3SettingType.EnableWebTransport: 412case (long)Http3SettingType.H3Datagram: 413_context.StreamLifetimeHandler.OnInboundControlStreamSetting((Http3SettingType)id, value);
Internal\Http3\Http3PeerSetting.cs (2)
8public Http3PeerSetting(Http3SettingType parameter, uint value) 14public Http3SettingType Parameter { get; }
Internal\Http3\Http3PeerSettings.cs (4)
28list.Add(new Http3PeerSetting(Http3SettingType.QPackMaxTableCapacity, HeaderTableSize)); 33list.Add(new Http3PeerSetting(Http3SettingType.MaxFieldSectionSize, MaxRequestHeaderFieldSectionSize)); 38list.Add(new Http3PeerSetting(Http3SettingType.EnableWebTransport, EnableWebTransport)); 43list.Add(new Http3PeerSetting(Http3SettingType.H3Datagram, H3Datagram));
Internal\Http3\IHttp3StreamLifetimeHandler.cs (1)
17void OnInboundControlStreamSetting(Http3SettingType type, long value);