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