Table of Contents

Class CacheStorageContentUpdatedEventArgs

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

A cache's contents have been modified.

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

Constructors

CacheStorageContentUpdatedEventArgs(string, string, string, string)

A cache's contents have been modified.

public CacheStorageContentUpdatedEventArgs(string Origin, string StorageKey, string BucketId, string CacheName)

Parameters

Origin string

Origin to update.

StorageKey string

Storage key to update.

BucketId string

Storage bucket to update.

CacheName string

Name of cache in origin.

Properties

BucketId

Storage bucket to update.

public string BucketId { get; init; }

Property Value

string

CacheName

Name of cache in origin.

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