Class FieldPathInfo

Assembly: redb.Core.dll

Field path information

public record FieldPathInfo : IEquatable<FieldPathInfo>

Inheritance

ObjectFieldPathInfo

Implements

Properties

ArrayIndex

Array element index (for Tags[0])

public int? ArrayIndex { get; init; }

DictKey

Dictionary key (for AddressBook["home"])

public string? DictKey { get; init; }

FullPath

Full path as string

public string FullPath { get; }

IsArray

Is array?

public bool IsArray { get; init; }

Segments

Path segments: ["Contacts", "Email"] or ["AddressBook[home]", "City"]

public List<string> Segments { get; init; }