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