1 write to _maxMessageSize
System.ServiceModel.Primitives (1)
System\ServiceModel\Channels\MaxMessageSizeStream.cs (1)
21_maxMessageSize = maxMessageSize;
5 references to _maxMessageSize
System.ServiceModel.Primitives (5)
System\ServiceModel\Channels\MaxMessageSizeStream.cs (5)
112if (_totalBytesRead >= _maxMessageSize) 114throw DiagnosticUtility.ExceptionUtility.ThrowHelperError(CreateMaxReceivedMessageSizeExceededException(_maxMessageSize)); 117long bytesRemaining = _maxMessageSize - _totalBytesRead; 137if (_bytesWritten + bytesToWrite > _maxMessageSize) 139throw DiagnosticUtility.ExceptionUtility.ThrowHelperError(CreateMaxSentMessageSizeExceededException(_maxMessageSize));