10 references to MaxEncodedSize
System.ServiceModel (10)
System\ServiceModel\Channels\BinaryMessageEncoder.cs (1)
758messageOffset += IntEncoder.MaxEncodedSize;
System\ServiceModel\Channels\FramingEncoders.cs (1)
194public const int MaxMessageFrameSize = 1 + IntEncoder.MaxEncodedSize;
System\ServiceModel\Channels\SingletonConnectionReader.cs (8)
1387this.chunkBuffer = new byte[IntEncoder.MaxEncodedSize]; 1511if (int.MaxValue - chunkBytesRemaining >= IntEncoder.MaxEncodedSize) 1513bytesToRead = Math.Min(count, chunkBytesRemaining + IntEncoder.MaxEncodedSize); 1541if (count < IntEncoder.MaxEncodedSize) 1550int bytesRead = ReadCore(buffer, offset, IntEncoder.MaxEncodedSize); 1641int.MaxValue, settings.BufferManager, envelopeStartBytes.Length + IntEncoder.MaxEncodedSize); 1681this.encodedSize = new byte[IntEncoder.MaxEncodedSize]; 1788int.MaxValue, this.bufferManager, envelopeStartBytes.Length + IntEncoder.MaxEncodedSize);