|
static int | CountNewLines (ReadOnlySpan< byte > data) |
|
static bool | IsTokenTypePrimitive (JsonTokenType tokenType) |
|
static bool | IsHexDigit (byte nextByte) |
|
static int | IndexOfQuoteOrAnyControlOrBackSlash (this ReadOnlySpan< byte > span) |
|
static bool | TryGetEscapedDateTime (ReadOnlySpan< byte > source, out DateTime value) |
|
static bool | TryGetEscapedDateTimeOffset (ReadOnlySpan< byte > source, out DateTimeOffset value) |
|
static bool | TryGetEscapedGuid (ReadOnlySpan< byte > source, out Guid value) |
|
static bool | TryGetFloatingPointConstant (ReadOnlySpan< byte > span, out float value) |
|
static bool | TryGetFloatingPointConstant (ReadOnlySpan< byte > span, out double value) |
|
static bool | TryGetUnescapedBase64Bytes (ReadOnlySpan< byte > utf8Source, int idx, [NotNullWhen(true)] out byte[] bytes) |
|
static string | GetUnescapedString (ReadOnlySpan< byte > utf8Source, int idx) |
|
static ReadOnlySpan< byte > | GetUnescapedSpan (ReadOnlySpan< byte > utf8Source, int idx) |
|
static bool | UnescapeAndCompare (ReadOnlySpan< byte > utf8Source, ReadOnlySpan< byte > other) |
|
static bool | UnescapeAndCompare (ReadOnlySequence< byte > utf8Source, ReadOnlySpan< byte > other) |
|
static bool | TryDecodeBase64InPlace (Span< byte > utf8Unescaped, [NotNullWhen(true)] out byte[] bytes) |
|
static bool | TryDecodeBase64 (ReadOnlySpan< byte > utf8Unescaped, [NotNullWhen(true)] out byte[] bytes) |
|
static string | TranscodeHelper (ReadOnlySpan< byte > utf8Unescaped) |
|
Definition at line 10 of file JsonReaderHelper.cs.