Table of Contents

Class CachedResource

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

Information about the cached resource.

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

Constructors

CachedResource(string, ResourceType, double)

Information about the cached resource.

public CachedResource(string Url, ResourceType Type, double BodySize)

Parameters

Url string

Resource URL. This is the url of the original network request.

Type ResourceType

Type of this resource.

BodySize double

Cached response body size.

Properties

BodySize

Cached response body size.

public double BodySize { get; init; }

Property Value

double

Response

Cached response data.

public Response? Response { get; init; }

Property Value

Response

Type

Type of this resource.

public ResourceType Type { get; init; }

Property Value

ResourceType

Url

Resource URL. This is the url of the original network request.

public string Url { get; init; }

Property Value

string