2 writes to MaxConcurrentUpgradedConnections
Microsoft.AspNetCore.Server.Kestrel.Core.Tests (2)
KestrelServerLimitsTests.cs (2)
248MaxConcurrentUpgradedConnections = value 259var ex = Assert.Throws<ArgumentOutOfRangeException>(() => new KestrelServerLimits().MaxConcurrentUpgradedConnections = value);
8 references to MaxConcurrentUpgradedConnections
Microsoft.AspNetCore.Server.Kestrel.Core (6)
Internal\KestrelServerImpl.cs (1)
84serverOptions.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" />. 273writer.WritePropertyName(nameof(MaxConcurrentUpgradedConnections)); 274if (MaxConcurrentUpgradedConnections is null) 280writer.WriteNumberValue(MaxConcurrentUpgradedConnections.Value);
Microsoft.AspNetCore.Server.Kestrel.Core.Tests (2)
KestrelServerLimitsTests.cs (2)
212Assert.Null(new KestrelServerLimits().MaxConcurrentUpgradedConnections); 251Assert.Equal(value, limits.MaxConcurrentUpgradedConnections);