5 references to SETTINGS_ENABLE_PUSH
InMemory.FunctionalTests (2)
Http2\Http2ConnectionTests.cs (2)
3778
[InlineData((int)(Http2SettingsParameter.
SETTINGS_ENABLE_PUSH
), 2, (int)(Http2ErrorCode.PROTOCOL_ERROR))]
3779
[InlineData((int)(Http2SettingsParameter.
SETTINGS_ENABLE_PUSH
), uint.MaxValue, (int)(Http2ErrorCode.PROTOCOL_ERROR))]
Microsoft.AspNetCore.Server.Kestrel.Core (3)
src\Shared\ServerInfrastructure\Http2\Http2PeerSettings.cs (3)
53
case Http2SettingsParameter.
SETTINGS_ENABLE_PUSH
:
56
throw new Http2SettingsParameterOutOfRangeException(Http2SettingsParameter.
SETTINGS_ENABLE_PUSH
,
112
list.Add(new Http2PeerSetting(Http2SettingsParameter.
SETTINGS_ENABLE_PUSH
, EnablePush ? 1u : 0));