11 references to MaxConcurrentConnections
Microsoft.AspNetCore.Server.Kestrel.Core (9)
Features\IDecrementConcurrentConnectionCountFeature.cs (2)
7/// A connection feature allowing middleware to stop counting connections towards <see cref="KestrelServerLimits.MaxConcurrentConnections"/>. 13/// Idempotent method to stop counting a connection towards <see cref="KestrelServerLimits.MaxConcurrentConnections"/>.
Internal\KestrelServerImpl.cs (2)
201connectionDelegate = EnforceConnectionLimit(connectionDelegate, Options.Limits.MaxConcurrentConnections, Trace, ServiceContext.Metrics); 220multiplexedConnectionDelegate = EnforceConnectionLimit(multiplexedConnectionDelegate, Options.Limits.MaxConcurrentConnections, Trace, ServiceContext.Metrics);
KestrelServerLimits.cs (5)
217/// <see cref="MaxConcurrentUpgradedConnections" /> limit instead of <see cref="MaxConcurrentConnections" />. 243/// <see cref="MaxConcurrentUpgradedConnections" /> limit instead of <see cref="MaxConcurrentConnections" />. 263writer.WritePropertyName(nameof(MaxConcurrentConnections)); 264if (MaxConcurrentConnections is null) 270writer.WriteNumberValue(MaxConcurrentConnections.Value);
Microsoft.AspNetCore.Server.Kestrel.Transport.DirectTls (2)
DirectTlsHandshakeLimitSetup.cs (2)
11/// <see cref="KestrelServerLimits.MaxConcurrentConnections"/> when it has not been set explicitly. On this 31options.MaxConcurrentHandshakes ??= _serverOptions.Limits.MaxConcurrentConnections;