<PackageReference Include="System.Text.Json" Version="10.0.5" />

System.Text.Json.JsonProperty

public struct JsonProperty
Represents a single property for a JSON object.
namespace System.Text.Json { public readonly struct JsonProperty { public JsonElement Value { get; } public string Name { get; } public bool NameEquals(string text); public bool NameEquals(ReadOnlySpan<byte> utf8Text); public bool NameEquals(ReadOnlySpan<char> text); public void WriteTo(Utf8JsonWriter writer); } }