2 writes to MaxStreamsPerConnection
Interop.FunctionalTests (2)
HttpClientHttp2InteropTests.cs (2)
1199
options.Limits.Http2.
MaxStreamsPerConnection
= 5;
1260
options.Limits.Http2.
MaxStreamsPerConnection
= 5;
5 references to MaxStreamsPerConnection
Microsoft.AspNetCore.Server.Kestrel.Core (5)
Http2Limits.cs (2)
201
writer.WritePropertyName(nameof(
MaxStreamsPerConnection
));
202
writer.WriteNumberValue(
MaxStreamsPerConnection
);
Internal\Http2\Http2Connection.cs (2)
182
_serverSettings.MaxConcurrentStreams = (uint)http2Limits.
MaxStreamsPerConnection
;
189
StreamPool = new PooledStreamStack<Http2Stream>(Math.Min(InitialStreamPoolSize, http2Limits.
MaxStreamsPerConnection
));
Internal\Http2\Http2FrameWriter.cs (1)
41
/// That is, the default value is 800, unless <see cref="Http2Limits.
MaxStreamsPerConnection
"/> is modified.