Table of Contents

Class Cache

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

Cache identifier.

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

Constructors

Cache(CacheId, string, string, string)

Cache identifier.

public Cache(CacheId CacheId, string SecurityOrigin, string StorageKey, string CacheName)

Parameters

CacheId CacheId

An opaque unique id of the cache.

SecurityOrigin string

Security origin of the cache.

StorageKey string

Storage key of the cache.

CacheName string

The name of the cache.

Properties

CacheId

An opaque unique id of the cache.

public CacheId CacheId { get; init; }

Property Value

CacheId

CacheName

The name of the cache.

public string CacheName { get; init; }

Property Value

string

SecurityOrigin

Security origin of the cache.

public string SecurityOrigin { get; init; }

Property Value

string

StorageBucket

Storage bucket of the cache.

public StorageBucket? StorageBucket { get; init; }

Property Value

StorageBucket

StorageKey

Storage key of the cache.

public string StorageKey { get; init; }

Property Value

string