Table of Contents

Class ObjectStoreIndex

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

Object store index.

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

Constructors

ObjectStoreIndex(string, KeyPath, bool, bool)

Object store index.

public ObjectStoreIndex(string Name, KeyPath KeyPath, bool Unique, bool MultiEntry)

Parameters

Name string

Index name.

KeyPath KeyPath

Index key path.

Unique bool

If true, index is unique.

MultiEntry bool

If true, index allows multiple entries for a key.

Properties

KeyPath

Index key path.

public KeyPath KeyPath { get; init; }

Property Value

KeyPath

MultiEntry

If true, index allows multiple entries for a key.

public bool MultiEntry { get; init; }

Property Value

bool

Name

Index name.

public string Name { get; init; }

Property Value

string

Unique

If true, index is unique.

public bool Unique { get; init; }

Property Value

bool