Table of Contents

Class DataEntry

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

Data entry.

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

Constructors

DataEntry(string, string, ImmutableArray<Header>, double, long, string, CachedResponseType, ImmutableArray<Header>)

Data entry.

public DataEntry(string RequestURL, string RequestMethod, ImmutableArray<Header> RequestHeaders, double ResponseTime, long ResponseStatus, string ResponseStatusText, CachedResponseType ResponseType, ImmutableArray<Header> ResponseHeaders)

Parameters

RequestURL string

Request URL.

RequestMethod string

Request method.

RequestHeaders ImmutableArray<Header>

Request headers

ResponseTime double

Number of seconds since epoch.

ResponseStatus long

HTTP response status code.

ResponseStatusText string

HTTP response status text.

ResponseType CachedResponseType

HTTP response type

ResponseHeaders ImmutableArray<Header>

Response headers

Properties

RequestHeaders

Request headers

public ImmutableArray<Header> RequestHeaders { get; init; }

Property Value

ImmutableArray<Header>

RequestMethod

Request method.

public string RequestMethod { get; init; }

Property Value

string

RequestURL

Request URL.

public string RequestURL { get; init; }

Property Value

string

ResponseHeaders

Response headers

public ImmutableArray<Header> ResponseHeaders { get; init; }

Property Value

ImmutableArray<Header>

ResponseStatus

HTTP response status code.

public long ResponseStatus { get; init; }

Property Value

long

ResponseStatusText

HTTP response status text.

public string ResponseStatusText { get; init; }

Property Value

string

ResponseTime

Number of seconds since epoch.

public double ResponseTime { get; init; }

Property Value

double

ResponseType

HTTP response type

public CachedResponseType ResponseType { get; init; }

Property Value

CachedResponseType