2 overrides of GetCharsWithFallback
System.Private.CoreLib (2)
src\libraries\System.Private.CoreLib\src\System\Text\ASCIIEncoding.cs (1)
670private protected sealed override int GetCharsWithFallback(ReadOnlySpan<byte> bytes, int originalBytesLength, Span<char> chars, int originalCharsLength, DecoderNLS? decoder, bool throwForDestinationOverflow = true)
src\libraries\System.Private.CoreLib\src\System\Text\UTF8Encoding.cs (1)
634private protected sealed override int GetCharsWithFallback(ReadOnlySpan<byte> bytes, int originalBytesLength, Span<char> chars, int originalCharsLength, DecoderNLS? decoder, bool throwForDestinationOverflow = true)
3 references to GetCharsWithFallback
System.Private.CoreLib (3)
src\libraries\System.Private.CoreLib\src\System\Text\ASCIIEncoding.cs (1)
715return base.GetCharsWithFallback(bytes, originalBytesLength, chars, originalCharsLength, decoder, throwForDestinationOverflow);
src\libraries\System.Private.CoreLib\src\System\Text\Encoding.Internal.cs (1)
1172return GetCharsWithFallback(bytes, originalByteCount, chars, originalCharCount, decoder);
src\libraries\System.Private.CoreLib\src\System\Text\UTF8Encoding.cs (1)
665return base.GetCharsWithFallback(bytes, originalBytesLength, chars, originalCharsLength, decoder, throwForDestinationOverflow);