1 write to _maxMessageSize
dotnet-svcutil-lib (1)
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\MaxMessageSizeStream.cs (1)
21_maxMessageSize = maxMessageSize;
6 references to _maxMessageSize
dotnet-svcutil-lib (6)
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\MaxMessageSizeStream.cs (6)
92if (_totalBytesRead >= _maxMessageSize) 94throw DiagnosticUtility.ExceptionUtility.ThrowHelperError(CreateMaxReceivedMessageSizeExceededException(_maxMessageSize)); 97long bytesRemaining = _maxMessageSize - _totalBytesRead; 105return Math.Min(bytesToRead, (int)(_maxMessageSize - _totalBytesRead)); 117if (_bytesWritten + bytesToWrite > _maxMessageSize) 119throw DiagnosticUtility.ExceptionUtility.ThrowHelperError(CreateMaxSentMessageSizeExceededException(_maxMessageSize));