1 write to _readCharBufferMaxSize
System.Private.CoreLib (1)
src\libraries\System.Private.CoreLib\src\System\Text\TranscodingStream.cs (1)
193
_readCharBufferMaxSize
= _innerEncoding.GetMaxCharCount(DefaultReadByteBufferSize);
3 references to _readCharBufferMaxSize
System.Private.CoreLib (3)
src\libraries\System.Private.CoreLib\src\System\Text\TranscodingStream.cs (3)
201
_readBuffer = GC.AllocateUninitializedArray<byte>(_thisEncoding.GetMaxByteCount(
_readCharBufferMaxSize
));
311
char[] rentedChars = ArrayPool<char>.Shared.Rent(
_readCharBufferMaxSize
);
390
char[] rentedChars = ArrayPool<char>.Shared.Rent(
_readCharBufferMaxSize
);