Table of Contents

Class ObjectPreview

Namespace
Selenium.WebDriver.BiDi.Cdp.Runtime
Assembly
Selenium.WebDriver.BiDi.Cdp.dll

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

Type string

Object type.

Overflow bool

True iff some of the properties or entries of the original object did not fit.

Properties ImmutableArray<PropertyPreview>

List of the properties.

Properties

Description

String representation of the object.

public string? Description { get; init; }

Property Value

string

Entries

List of the entries. Specified for map and set subtype values only.

public ImmutableArray<EntryPreview>? Entries { get; init; }

Property Value

ImmutableArray<EntryPreview>?

Overflow

True iff some of the properties or entries of the original object did not fit.

public bool Overflow { get; init; }

Property Value

bool

Properties

List of the properties.

public ImmutableArray<PropertyPreview> Properties { get; init; }

Property Value

ImmutableArray<PropertyPreview>

Subtype

Object subtype hint. Specified for object type values only.

public string? Subtype { get; init; }

Property Value

string

Type

Object type.

public string Type { get; init; }

Property Value

string