Utf8JsonReader.CurrentState Property

Definition

Gets the current Utf8JsonReader state to pass to a Utf8JsonReader constructor with more data.

public:
 property System::Text::Json::JsonReaderState CurrentState { System::Text::Json::JsonReaderState get(); };
public System.Text.Json.JsonReaderState CurrentState { get; }
member this.CurrentState : System.Text.Json.JsonReaderState
Public ReadOnly Property CurrentState As JsonReaderState

Property Value

The current reader state.

Remarks

Unlike the Utf8JsonReader, which is a ref struct, the state can survive across async/await boundaries. This type is required to provide support for reading in more data asynchronously before continuing with a new instance of the Utf8JsonReader.

Applies to