Table of Contents

Class CachedResource

Namespace
OpenQA.Selenium.DevTools.V148.Network
Assembly
Selenium.WebDriver.dll

Information about the cached resource.

public sealed class CachedResource
Inheritance
CachedResource
Inherited Members

Properties

BodySize

Cached response body size.

[JsonPropertyName("bodySize")]
public double BodySize { get; set; }

Property Value

double

Response

Cached response data.

[JsonPropertyName("response")]
[JsonIgnore(Condition = JsonIgnoreCondition.WhenWritingDefault)]
public Response? Response { get; set; }

Property Value

Response

Type

Type of this resource.

[JsonPropertyName("type")]
public ResourceType Type { get; set; }

Property Value

ResourceType

Url

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

[JsonPropertyName("url")]
public string Url { get; set; }

Property Value

string