Table of Contents

Class IndexedDBContentUpdatedEventArgs

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

The origin's IndexedDB object store has been modified.

public sealed record IndexedDBContentUpdatedEventArgs : EventArgs, IEquatable<EventArgs>, IEquatable<IndexedDBContentUpdatedEventArgs>
Inheritance
EventArgs
IndexedDBContentUpdatedEventArgs
Implements
IEquatable<EventArgs>
Inherited Members
EventArgs.ToString()
EventArgs.GetHashCode()
EventArgs.Equals(EventArgs)
EventArgs.<Clone>$()
EventArgs.BiDi
EventArgs.AdditionalData
EventArgs.AdditionalMessageData

Constructors

IndexedDBContentUpdatedEventArgs(string, string, string, string, string)

The origin's IndexedDB object store has been modified.

public IndexedDBContentUpdatedEventArgs(string Origin, string StorageKey, string BucketId, string DatabaseName, string ObjectStoreName)

Parameters

Origin string

Origin to update.

StorageKey string

Storage key to update.

BucketId string

Storage bucket to update.

DatabaseName string

Database to update.

ObjectStoreName string

ObjectStore to update.

Properties

BucketId

Storage bucket to update.

public string BucketId { get; init; }

Property Value

string

DatabaseName

Database to update.

public string DatabaseName { get; init; }

Property Value

string

ObjectStoreName

ObjectStore to update.

public string ObjectStoreName { get; init; }

Property Value

string

Origin

Origin to update.

public string Origin { get; init; }

Property Value

string

StorageKey

Storage key to update.

public string StorageKey { get; init; }

Property Value

string