Utf8JsonReader.CurrentState Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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
Collaborate with us on GitHub
The source for this content can be found on GitHub, where you can also create and review issues and pull requests. For more information, see our contributor guide.