<PackageReference Include="System.Text.Encodings.Web" Version="8.0.0-preview.2.23128.3" />
ScalarEscaperBase
A class that can escape a scalar value and write either UTF-16 or UTF-8 format.
namespace System.
Text.
Encodings.
Web
{
internal abstract class ScalarEscaperBase
{
internal abstract int EncodeUtf16(
Rune value,
Span<
char>
destination);
internal abstract int EncodeUtf8(
Rune value,
Span<
byte>
destination);
}
}