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
CacheIdCacheIdAn opaque unique id of the cache.
SecurityOriginstringSecurity origin of the cache.
StorageKeystringStorage key of the cache.
CacheNamestringThe name of the cache.
Properties
CacheId
An opaque unique id of the cache.
public CacheId CacheId { get; init; }
Property Value
CacheName
The name of the cache.
public string CacheName { get; init; }
Property Value
SecurityOrigin
Security origin of the cache.
public string SecurityOrigin { get; init; }
Property Value
StorageBucket
Storage bucket of the cache.
public StorageBucket? StorageBucket { get; init; }
Property Value
StorageKey
Storage key of the cache.
public string StorageKey { get; init; }