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