Delegate JsonRead<T>
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
readerUtf8JsonReader- Reads one JSON value at the reader's current token with access to the complete source bytes.
sourceReadOnlySpan<byte>- Reads one JSON value at the reader's current token with access to the complete source bytes.
contextCodecContext- 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