Table of Contents

Class DatabaseWithObjectStores

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

Database with an array of object stores.

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

Constructors

DatabaseWithObjectStores(string, double, ImmutableArray<ObjectStore>)

Database with an array of object stores.

public DatabaseWithObjectStores(string Name, double Version, ImmutableArray<ObjectStore> ObjectStores)

Parameters

Name string

Database name.

Version double

Database version (type is not 'integer', as the standard requires the version number to be 'unsigned long long')

ObjectStores ImmutableArray<ObjectStore>

Object stores in this database.

Properties

Name

Database name.

public string Name { get; init; }

Property Value

string

ObjectStores

Object stores in this database.

public ImmutableArray<ObjectStore> ObjectStores { get; init; }

Property Value

ImmutableArray<ObjectStore>

Version

Database version (type is not 'integer', as the standard requires the version number to be 'unsigned long long')

public double Version { get; init; }

Property Value

double