11 references to MustFlush
System.Private.CoreLib (11)
src\libraries\System.Private.CoreLib\src\System\Text\DecoderNLS.cs (2)
245
if (
MustFlush
)
309
if (
MustFlush
)
src\libraries\System.Private.CoreLib\src\System\Text\Encoding.Internal.cs (2)
929
&& !decoder.
MustFlush
)
1211
if (decoder is null || decoder.
MustFlush
)
src\libraries\System.Private.CoreLib\src\System\Text\UnicodeEncoding.cs (3)
1238
if (decoder is null || decoder.
MustFlush
)
1610
if (decoder is null || decoder.
MustFlush
)
1699
Debug.Assert(!decoder.
MustFlush
|| ((lastChar == (char)0) && (lastByte == -1)),
src\libraries\System.Private.CoreLib\src\System\Text\UTF32Encoding.cs (2)
791
if (readCount > 0 && (decoder is null || decoder.
MustFlush
))
984
if (readCount > 0 && (decoder is null || decoder.
MustFlush
))
src\libraries\System.Private.CoreLib\src\System\Text\UTF7Encoding.cs (1)
693
if (decoder.
MustFlush
)
src\libraries\System.Private.CoreLib\src\System\Text\UTF8Encoding.cs (1)
647
Utf8.ToUtf16(bytes, chars, out int bytesRead, out int charsWritten, replaceInvalidSequences: true, isFinalBlock: decoder is null || decoder.
MustFlush
);