Class ObjectPreview
Object containing abbreviated remote object value.
public sealed record ObjectPreview : IEquatable<ObjectPreview>
- Inheritance
-
ObjectPreview
- Implements
- Inherited Members
Constructors
ObjectPreview(string, bool, ImmutableArray<PropertyPreview>)
Object containing abbreviated remote object value.
public ObjectPreview(string Type, bool Overflow, ImmutableArray<PropertyPreview> Properties)
Parameters
TypestringObject type.
OverflowboolTrue iff some of the properties or entries of the original object did not fit.
PropertiesImmutableArray<PropertyPreview>List of the properties.
Properties
Description
String representation of the object.
public string? Description { get; init; }
Property Value
Entries
List of the entries. Specified for map and set subtype values only.
public ImmutableArray<EntryPreview>? Entries { get; init; }
Property Value
Overflow
True iff some of the properties or entries of the original object did not fit.
public bool Overflow { get; init; }
Property Value
Properties
List of the properties.
public ImmutableArray<PropertyPreview> Properties { get; init; }
Property Value
Subtype
Object subtype hint. Specified for object type values only.
public string? Subtype { get; init; }
Property Value
Type
Object type.
public string Type { get; init; }