1 write to maxBufferSize
System.ServiceModel (1)
System\ServiceModel\Channels\WebSocketTransportDuplexSessionChannel.cs (1)
539this.maxBufferSize = webSocketTransportDuplexSessionChannel.MaxBufferSize;
5 references to maxBufferSize
System.ServiceModel (5)
System\ServiceModel\Channels\WebSocketTransportDuplexSessionChannel.cs (5)
542this.receiveBufferSize = Math.Min(WebSocketHelper.GetReceiveBufferSize(this.maxReceivedMessageSize), this.maxBufferSize); 676if (internalBuffer.Length >= this.maxBufferSize) 678this.pendingException = FxTrace.Exception.AsError(new QuotaExceededException(SR.GetString(SR.MaxReceivedMessageSizeExceeded, this.maxBufferSize))); 682int newSize = (int)Math.Min(((double)internalBuffer.Length) * 2, this.maxBufferSize); 983this.maxBufferSize);