1 override of GetBytesWithFallback
System.Private.CoreLib (1)
src\libraries\System.Private.CoreLib\src\System\Text\ASCIIEncoding.cs (1)
381private protected sealed override int GetBytesWithFallback(ReadOnlySpan<char> chars, int originalCharsLength, Span<byte> bytes, int originalBytesLength, EncoderNLS? encoder, bool throwForDestinationOverflow = true)
3 references to GetBytesWithFallback
System.Private.CoreLib (3)
src\libraries\System.Private.CoreLib\src\System\Text\ASCIIEncoding.cs (1)
427return base.GetBytesWithFallback(chars, originalCharsLength, bytes, originalBytesLength, encoder, throwForDestinationOverflow);
src\libraries\System.Private.CoreLib\src\System\Text\Encoding.Internal.cs (2)
512/// after data has been drained, then to call <see cref="GetBytesWithFallback(ReadOnlySpan{char}, int, Span{byte}, int, EncoderNLS, bool)"/>. 567return GetBytesWithFallback(chars, originalCharCount, bytes, originalByteCount, encoder);