<PackageReference Include="System.Text.Json" Version="6.0.0-preview.7.21377.19" />

JsonObject

public int Count { get; }

public JsonObject(JsonNodeOptions? options = default)

public JsonObject(IEnumerable<KeyValuePair<string, JsonNode>> properties, JsonNodeOptions? options = default)

public static JsonObject Create(JsonElement element, JsonNodeOptions? options = default)

public void Add(string propertyName, JsonNode value)

public void Add(KeyValuePair<string, JsonNode> property)

public void Clear()

public bool ContainsKey(string propertyName)

public bool Remove(string propertyName)

public bool TryGetPropertyValue(string propertyName, out JsonNode jsonNode)