Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add Utf8JsonReader.AllowMultipleValues and related APIs. #104328

Merged
Prev Previous commit
Next Next commit
Update src/libraries/System.Text.Json/src/System/Text/Json/Serializat…
…ion/JsonSerializer.Read.Stream.cs

Co-authored-by: Stephen Toub <stoub@microsoft.com>
  • Loading branch information
eiriktsarpalis and stephentoub committed Jul 3, 2024
commit 1f190170f4f1a2fef1c16fa5e4c97c556634e3fe
Original file line number Diff line number Diff line change
Expand Up @@ -435,7 +435,7 @@ public static partial class JsonSerializer
/// <typeparam name="TValue">The element type to deserialize asynchronously.</typeparam>
/// <returns>An <see cref="IAsyncEnumerable{TValue}" /> representation of the provided JSON array.</returns>
eiriktsarpalis marked this conversation as resolved.
Show resolved Hide resolved
/// <param name="utf8Json">JSON data to parse.</param>
/// <param name="topLevelValues">Whether to deserialize from a sequence of top-level JSON values.</param>
/// <param name="topLevelValues"><see langword="true" /> to deserialize from a sequence of top-level JSON values, or <see langword="false" />to deserialize from a single top-level array.</param>
/// <param name="options">Options to control the behavior during reading.</param>
/// <param name="cancellationToken">The <see cref="System.Threading.CancellationToken"/> that can be used to cancel the read operation.</param>
/// <exception cref="System.ArgumentNullException">
Expand Down