Table of Contents

Class ObjectStore

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

Object store.

public sealed record ObjectStore : IEquatable<ObjectStore>
Inheritance
ObjectStore
Implements
Inherited Members

Constructors

ObjectStore(string, KeyPath, bool, ImmutableArray<ObjectStoreIndex>)

Object store.

public ObjectStore(string Name, KeyPath KeyPath, bool AutoIncrement, ImmutableArray<ObjectStoreIndex> Indexes)

Parameters

Name string

Object store name.

KeyPath KeyPath

Object store key path.

AutoIncrement bool

If true, object store has auto increment flag set.

Indexes ImmutableArray<ObjectStoreIndex>

Indexes in this object store.

Properties

AutoIncrement

If true, object store has auto increment flag set.

public bool AutoIncrement { get; init; }

Property Value

bool

Indexes

Indexes in this object store.

public ImmutableArray<ObjectStoreIndex> Indexes { get; init; }

Property Value

ImmutableArray<ObjectStoreIndex>

KeyPath

Object store key path.

public KeyPath KeyPath { get; init; }

Property Value

KeyPath

Name

Object store name.

public string Name { get; init; }

Property Value

string