Table of Contents

Class RequestDataResult

Namespace
Selenium.WebDriver.BiDi.Cdp.IndexedDB
Assembly
Selenium.WebDriver.BiDi.Cdp.dll
public sealed record RequestDataResult : EmptyResult, IEquatable<EmptyResult>, IEquatable<RequestDataResult>
Inheritance
EmptyResult
RequestDataResult
Implements
IEquatable<EmptyResult>
Inherited Members
EmptyResult.ToString()
EmptyResult.GetHashCode()
EmptyResult.Equals(EmptyResult)
EmptyResult.<Clone>$()
EmptyResult.AdditionalData
EmptyResult.AdditionalMessageData

Constructors

RequestDataResult(ImmutableArray<DataEntry>, bool)

public RequestDataResult(ImmutableArray<DataEntry> ObjectStoreDataEntries, bool HasMore)

Parameters

ObjectStoreDataEntries ImmutableArray<DataEntry>

Array of object store data entries.

HasMore bool

If true, there are more entries to fetch in the given range.

Properties

HasMore

If true, there are more entries to fetch in the given range.

public bool HasMore { get; init; }

Property Value

bool

ObjectStoreDataEntries

Array of object store data entries.

public ImmutableArray<DataEntry> ObjectStoreDataEntries { get; init; }

Property Value

ImmutableArray<DataEntry>