Table of Contents

Class CacheStorageListUpdatedEventArgs

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

A cache has been added/deleted.

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

Constructors

CacheStorageListUpdatedEventArgs(string, string, string)

A cache has been added/deleted.

public CacheStorageListUpdatedEventArgs(string Origin, string StorageKey, string BucketId)

Parameters

Origin string

Origin to update.

StorageKey string

Storage key to update.

BucketId string

Storage bucket to update.

Properties

BucketId

Storage bucket to update.

public string BucketId { 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