Table of Contents

Class FrameResource

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

Information about the Resource on the page.

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

Constructors

FrameResource(string, ResourceType, string)

Information about the Resource on the page.

public FrameResource(string Url, ResourceType Type, string MimeType)

Parameters

Url string

Resource URL.

Type ResourceType

Type of this resource.

MimeType string

Resource mimeType as determined by the browser.

Properties

Canceled

True if the resource was canceled during loading.

public bool? Canceled { get; init; }

Property Value

bool?

ContentSize

Resource content size.

public double? ContentSize { get; init; }

Property Value

double?

Failed

True if the resource failed to load.

public bool? Failed { get; init; }

Property Value

bool?

LastModified

last-modified timestamp as reported by server.

public TimeSinceEpoch? LastModified { get; init; }

Property Value

TimeSinceEpoch

MimeType

Resource mimeType as determined by the browser.

public string MimeType { get; init; }

Property Value

string

Type

Type of this resource.

public ResourceType Type { get; init; }

Property Value

ResourceType

Url

Resource URL.

public string Url { get; init; }

Property Value

string