3 overrides of InternalFallback
mscorlib (3)
system\text\decoderbestfitfallback.cs (1)
169internal unsafe override int InternalFallback(byte[] bytes, byte* pBytes)
system\text\decoderreplacementfallback.cs (1)
203internal unsafe override int InternalFallback(byte[] bytes, byte* pBytes)
system\text\utf7encoding.cs (1)
1136internal unsafe override int InternalFallback(byte[] bytes, byte* pBytes)
14 references to InternalFallback
mscorlib (14)
system\text\asciiencoding.cs (1)
816charCount += fallbackBuffer.InternalFallback(byteBuffer, bytes);
system\text\dbcscodepageencoding.cs (3)
828return fallbackBuffer.InternalFallback(byteBuffer, bytes); 853charCount += fallbackBuffer.InternalFallback(byteBuffer, bytes); 916charCount += fallbackBuffer.InternalFallback(byteBuffer, bytes);
system\text\encoding.cs (1)
2081charCountResult += fallbackBuffer.InternalFallback(byteBuffer, bytes);
system\text\sbcscodepageencoding.cs (1)
728charCount += fallbackBuffer.InternalFallback(byteBuffer, bytes);
system\text\unicodeencoding.cs (5)
1332charCount += fallbackBuffer.InternalFallback(byteBuffer, bytes); 1373charCount += fallbackBuffer.InternalFallback(byteBuffer, bytes); 1414charCount += fallbackBuffer.InternalFallback(byteBuffer, bytes); 1454charCount += fallbackBuffer.InternalFallback(byteBuffer, bytes); 1473charCount += fallbackBuffer.InternalFallback( new byte[] { unchecked((byte)lastByte) }, bytes);
system\text\utf32encoding.cs (2)
841charCount += fallbackBuffer.InternalFallback(fallbackBytes, bytes); 884charCount += fallbackBuffer.InternalFallback(fallbackBytes, bytes);
system\text\utf8encoding.cs (1)
2252int count = fallback.InternalFallback(bytesUnknown, pSrc);