System.Text.Json.JsonReaderState
Defines an opaque type that holds and saves all the relevant state information, which must be provided to the Utf8JsonReader to continue reading after processing incomplete data.
namespace System.Text.Json
{
public readonly struct JsonReaderState
{
public JsonReaderOptions Options { get; }
public JsonReaderState(JsonReaderOptions options = default(JsonReaderOptions));
}
}