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
  • Loading branch information
eiriktsarpalis committed Jul 4, 2024
commit 5d6f7fd88cf74ced4079556186af6df7628ccc5f
Original file line number Diff line number Diff line change
Expand Up @@ -489,7 +489,7 @@ public static partial class JsonSerializer
/// that can be used to deserialize sequences of JSON values in a streaming manner.
/// </summary>
/// <typeparam name="TValue">The element type to deserialize asynchronously.</typeparam>
/// <returns>An <see cref="IAsyncEnumerable{TValue}" /> representation of the provided JSON array.</returns>
/// <returns>An <see cref="IAsyncEnumerable{TValue}" /> representation of the provided JSON sequence.</returns>
/// <param name="utf8Json">JSON data to parse.</param>
/// <param name="jsonTypeInfo">Metadata about the element type to convert.</param>
/// <param name="topLevelValues">Whether to deserialize from a sequence of top-level JSON values.</param>
Expand Down
Loading