2 overrides of GetCharsWithFallback
System.Private.CoreLib (2)
src\libraries\System.Private.CoreLib\src\System\Text\ASCIIEncoding.cs (1)
670
private 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)
634
private 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)
715
return base.
GetCharsWithFallback
(bytes, originalBytesLength, chars, originalCharsLength, decoder, throwForDestinationOverflow);
src\libraries\System.Private.CoreLib\src\System\Text\Encoding.Internal.cs (1)
1172
return
GetCharsWithFallback
(bytes, originalByteCount, chars, originalCharCount, decoder);
src\libraries\System.Private.CoreLib\src\System\Text\UTF8Encoding.cs (1)
665
return base.
GetCharsWithFallback
(bytes, originalBytesLength, chars, originalCharsLength, decoder, throwForDestinationOverflow);