System.Text.Json.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);
}
}