9 references to WebSocketSettings
System.ServiceModel (9)
System\ServiceModel\Channels\HttpChannelListener.cs (6)
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)), 1113innerPipeline = new DefaultWebSocketConnectionHandler(this.WebSocketSettings.SubProtocol, this.currentWebSocketVersion, this.MessageVersion, this.MessageEncoderFactory, this.TransferMode);
System\ServiceModel\Channels\HttpRequestContext.cs (1)
806this.Listener.WebSocketSettings.GetEffectiveKeepAliveInterval(),
System\ServiceModel\Channels\WebSocketTransportDuplexSessionChannel.cs (2)
43Fx.Assert(channelListener.WebSocketSettings != null, "channelListener.WebSocketTransportSettings should not be null."); 44this.webSocketSettings = channelListener.WebSocketSettings;