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)
92
if (_totalBytesRead >=
_maxMessageSize
)
94
throw DiagnosticUtility.ExceptionUtility.ThrowHelperError(CreateMaxReceivedMessageSizeExceededException(
_maxMessageSize
));
97
long bytesRemaining =
_maxMessageSize
- _totalBytesRead;
105
return Math.Min(bytesToRead, (int)(
_maxMessageSize
- _totalBytesRead));
117
if (_bytesWritten + bytesToWrite >
_maxMessageSize
)
119
throw DiagnosticUtility.ExceptionUtility.ThrowHelperError(CreateMaxSentMessageSizeExceededException(
_maxMessageSize
));