2 writes to MaxConcurrentUpgradedConnections
Microsoft.AspNetCore.Server.Kestrel.Core.Tests (2)
KestrelServerLimitsTests.cs (2)
248
MaxConcurrentUpgradedConnections
= value
259
var ex = Assert.Throws<ArgumentOutOfRangeException>(() => new KestrelServerLimits().
MaxConcurrentUpgradedConnections
= value);
8 references to MaxConcurrentUpgradedConnections
Microsoft.AspNetCore.Server.Kestrel.Core (6)
Internal\KestrelServerImpl.cs (1)
84
serverOptions.Limits.
MaxConcurrentUpgradedConnections
);
KestrelServerLimits.cs (5)
217
/// <see cref="
MaxConcurrentUpgradedConnections
" /> limit instead of <see cref="MaxConcurrentConnections" />.
243
/// <see cref="
MaxConcurrentUpgradedConnections
" /> limit instead of <see cref="MaxConcurrentConnections" />.
273
writer.WritePropertyName(nameof(
MaxConcurrentUpgradedConnections
));
274
if (
MaxConcurrentUpgradedConnections
is null)
280
writer.WriteNumberValue(
MaxConcurrentUpgradedConnections
.Value);
Microsoft.AspNetCore.Server.Kestrel.Core.Tests (2)
KestrelServerLimitsTests.cs (2)
212
Assert.Null(new KestrelServerLimits().
MaxConcurrentUpgradedConnections
);
251
Assert.Equal(value, limits.
MaxConcurrentUpgradedConnections
);