3 writes to MaxPendingConnections
System.ServiceModel (3)
System\ServiceModel\Channels\WebSocketHelper.cs (1)
211runtimeSettings.MaxPendingConnections = WebSocketDefaults.MaxPendingConnectionsCpuCount;
System\ServiceModel\Channels\WebSocketTransportSettings.cs (1)
49this.MaxPendingConnections = settings.MaxPendingConnections;
System\ServiceModel\Configuration\WebSocketTransportSettingsElement.cs (1)
92settings.MaxPendingConnections = this.MaxPendingConnections;
11 references to MaxPendingConnections
System.ServiceModel (11)
System\ServiceModel\Channels\HttpChannelListener.cs (5)
922Fx.Assert(this.WebSocketSettings.MaxPendingConnections > 0, "MaxPendingConnections should be positive."); 923if (this.Acceptor.PendingCount >= this.WebSocketSettings.MaxPendingConnections) 927TD.MaxPendingConnectionsExceeded(SR.GetString(SR.WebSocketMaxPendingConnectionsReached, this.WebSocketSettings.MaxPendingConnections, WebSocketHelper.MaxPendingConnectionsString, WebSocketHelper.WebSocketTransportSettingsString)); 933TraceCode.MaxPendingConnectionsReached, SR.GetString(SR.WebSocketMaxPendingConnectionsReached, this.WebSocketSettings.MaxPendingConnections, WebSocketHelper.MaxPendingConnectionsString, WebSocketHelper.WebSocketTransportSettingsString), 934new StringTraceRecord(WebSocketHelper.MaxPendingConnectionsString, this.WebSocketSettings.MaxPendingConnections.ToString(System.Globalization.CultureInfo.InvariantCulture)),
System\ServiceModel\Channels\WebSocketHelper.cs (1)
209if (runtimeSettings.MaxPendingConnections == WebSocketDefaults.DefaultMaxPendingConnections)
System\ServiceModel\Channels\WebSocketTransportSettings.cs (4)
49this.MaxPendingConnections = settings.MaxPendingConnections; 192&& this.MaxPendingConnections == other.MaxPendingConnections; 212^ this.MaxPendingConnections.GetHashCode();
System\ServiceModel\Configuration\WebSocketTransportSettingsElement.cs (1)
77SetPropertyValueIfNotDefaultValue(ConfigurationStrings.MaxPendingConnections, settings.MaxPendingConnections);