2 overrides of InternalFallback
System.Private.CoreLib (2)
src\libraries\System.Private.CoreLib\src\System\Text\DecoderReplacementFallback.cs (1)
166internal override unsafe int InternalFallback(byte[] bytes, byte* pBytes) =>
src\libraries\System.Private.CoreLib\src\System\Text\UTF7Encoding.cs (1)
897internal override unsafe int InternalFallback(byte[] bytes, byte* pBytes)
8 references to InternalFallback
System.Private.CoreLib (8)
src\libraries\System.Private.CoreLib\src\System\Text\Encoding.cs (1)
1392_charCountResult += _fallbackBuffer.InternalFallback(byteBuffer, _bytes);
src\libraries\System.Private.CoreLib\src\System\Text\UnicodeEncoding.cs (5)
1154charCount += fallbackBuffer.InternalFallback(byteBuffer, bytes); 1191charCount += fallbackBuffer.InternalFallback(byteBuffer, bytes); 1228charCount += fallbackBuffer.InternalFallback(byteBuffer, bytes); 1264charCount += fallbackBuffer.InternalFallback(byteBuffer, bytes); 1282charCount += fallbackBuffer.InternalFallback([unchecked((byte)lastByte)], bytes);
src\libraries\System.Private.CoreLib\src\System\Text\UTF32Encoding.cs (2)
769charCount += fallbackBuffer.InternalFallback(fallbackBytes, bytes); 812charCount += fallbackBuffer.InternalFallback(fallbackBytes, bytes);