JsonDocumentBuilder<T>.ParseValue Method
Definition
Namespace: Corvus.Text.Json
Assembly: Corvus.Text.Json.dll
Source: JsonDocumentBuilder.Parse.cs
ParseValue(JsonWorkspace, ref Utf8JsonReader)
Parses one JSON value (including objects or arrays) from the provided reader directly into a mutable document builder.
public static JsonDocumentBuilder<T> ParseValue(JsonWorkspace workspace, ref Utf8JsonReader reader)
Parameters
| Name | Type | Description |
|---|---|---|
workspace |
JsonWorkspace |
The workspace that will own this builder. |
reader |
ref Utf8JsonReader |
The reader to read. |
Returns
A JsonDocumentBuilder representation of the JSON value.
Exceptions
| Exception | Description |
|---|---|
ArgumentException |
reader is using unsupported options. |
ArgumentException |
The current reader token does not start or represent a value. |
JsonException |
A value could not be read from the reader. |
Remarks
If the TokenType property of reader is PropertyName or None, the reader will be advanced by one call to Read to determine the start of the value. Upon completion of this method, reader will be positioned at the final token in the JSON value. If an exception is thrown, the reader is reset to the state it was in when the method was called. This method makes a copy of the data the reader acted on, so there is no caller requirement to maintain data integrity beyond the return of this method.
Applies To
| Product | Versions |
|---|---|
| .NET | 9, 10 |
| .NET Standard | 2.0, 2.1 |
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.
Open an issue