Table of Contents

Delegate JsonRead<T>

Namespace
Shard.Codecs.Json
Assembly
Shard.Codecs.dll

Reads one JSON value at the reader's current token with access to the complete source bytes.

public delegate T JsonRead<out T>(ref Utf8JsonReader reader, ReadOnlySpan<byte> source, CodecContext context)

Parameters

reader Utf8JsonReader
Reads one JSON value at the reader's current token with access to the complete source bytes.
source ReadOnlySpan<byte>
Reads one JSON value at the reader's current token with access to the complete source bytes.
context CodecContext
Reads one JSON value at the reader's current token with access to the complete source bytes.

Returns

T
Reads one JSON value at the reader's current token with access to the complete source bytes.

Type Parameters

T