Skip to content

Add IList<T> and related APIs to JsonObject. - #103645

Merged
eiriktsarpalis merged 4 commits into
dotnet:mainfrom
eiriktsarpalis:jsonnode-improvements
Jun 19, 2024
Merged

Add IList<T> and related APIs to JsonObject.#103645
eiriktsarpalis merged 4 commits into
dotnet:mainfrom
eiriktsarpalis:jsonnode-improvements

Conversation

@eiriktsarpalis

Copy link
Copy Markdown
Member

Fix#102932. For net9.0 the JsonObject replaces the bespoke JsonPropertyDictionary<T> with the newly added OrderedDictionary<TKey, TValue> collection.

@ghost

Copy link
Copy Markdown

Note regarding the new-api-needs-documentation label:

This serves as a reminder for when your PR is modifying a ref *.cs file and adding/modifying public APIs, please make sure the API implementation in the src *.cs file is documented with triple slash comments, so the PR reviewers can sign off that change.


Assert.Equal(3, jObject.Count);
Assert.DoesNotContain("Three", jObject);
#if !NET9_0_OR_GREATER // https://github.com/dotnet/runtime/issues/103637

Copy link
Copy Markdown
MemberAuthor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

To be removed once #103643 is merged.

Comment threadsrc/libraries/System.Text.Json/ref/System.Text.Json.cs
Comment threadsrc/libraries/System.Text.Json/ref/System.Text.Json.cs
@eiriktsarpalis

Copy link
Copy Markdown
MemberAuthor

/ba-g bypassing unrelated CI issues to merge for P6

@github-actionsgithub-actionsBot locked and limited conversation to collaborators Jul 19, 2024
Sign up for freeto subscribe to this conversation on GitHub. Already have an account? Sign in.

Projects

None yet

Development

Successfully merging this pull request may close these issues.

JsonObject should support property order manipulation

2 participants

@eiriktsarpalis@stephentoub