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
RequestURLstringRequest URL.
RequestMethodstringRequest method.
RequestHeadersImmutableArray<Header>Request headers
ResponseTimedoubleNumber of seconds since epoch.
ResponseStatuslongHTTP response status code.
ResponseStatusTextstringHTTP response status text.
ResponseTypeCachedResponseTypeHTTP response type
ResponseHeadersImmutableArray<Header>Response headers
Properties
RequestHeaders
Request headers
public ImmutableArray<Header> RequestHeaders { get; init; }
Property Value
RequestMethod
Request method.
public string RequestMethod { get; init; }
Property Value
RequestURL
Request URL.
public string RequestURL { get; init; }
Property Value
ResponseHeaders
Response headers
public ImmutableArray<Header> ResponseHeaders { get; init; }
Property Value
ResponseStatus
HTTP response status code.
public long ResponseStatus { get; init; }
Property Value
ResponseStatusText
HTTP response status text.
public string ResponseStatusText { get; init; }
Property Value
ResponseTime
Number of seconds since epoch.
public double ResponseTime { get; init; }
Property Value
ResponseType
HTTP response type
public CachedResponseType ResponseType { get; init; }