Table of Contents

Class KeyRange

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

Key range.

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

Constructors

KeyRange(bool, bool)

Key range.

public KeyRange(bool LowerOpen, bool UpperOpen)

Parameters

LowerOpen bool

If true lower bound is open.

UpperOpen bool

If true upper bound is open.

Properties

Lower

Lower bound.

public Key? Lower { get; init; }

Property Value

Key

LowerOpen

If true lower bound is open.

public bool LowerOpen { get; init; }

Property Value

bool

Upper

Upper bound.

public Key? Upper { get; init; }

Property Value

Key

UpperOpen

If true upper bound is open.

public bool UpperOpen { get; init; }

Property Value

bool