Class RequestTimingResult
- Namespace
- Microsoft.Playwright
- Assembly
- Microsoft.Playwright.dll
public class RequestTimingResult
- Inheritance
-
RequestTimingResult
- Inherited Members
Constructors
RequestTimingResult()
public RequestTimingResult()
Properties
ConnectEnd
Time immediately before the user agent starts establishing the connection to the
server to retrieve the resource. The value is given in milliseconds relative to
startTime
, -1 if not available.
[Required]
[JsonPropertyName("connectEnd")]
public float ConnectEnd { get; set; }
Property Value
ConnectStart
Time immediately before the user agent starts establishing the connection to the
server to retrieve the resource. The value is given in milliseconds relative to
startTime
, -1 if not available.
[Required]
[JsonPropertyName("connectStart")]
public float ConnectStart { get; set; }
Property Value
DomainLookupEnd
Time immediately after the browser starts the domain name lookup for the resource.
The value is given in milliseconds relative to startTime
, -1 if not available.
[Required]
[JsonPropertyName("domainLookupEnd")]
public float DomainLookupEnd { get; set; }
Property Value
DomainLookupStart
Time immediately before the browser starts the domain name lookup for the resource.
The value is given in milliseconds relative to startTime
, -1 if not available.
[Required]
[JsonPropertyName("domainLookupStart")]
public float DomainLookupStart { get; set; }
Property Value
RequestStart
Time immediately before the browser starts requesting the resource from the server,
cache, or local resource. The value is given in milliseconds relative to startTime
,
-1 if not available.
[Required]
[JsonPropertyName("requestStart")]
public float RequestStart { get; set; }
Property Value
ResponseEnd
Time immediately after the browser receives the last byte of the resource or immediately
before the transport connection is closed, whichever comes first. The value is given
in milliseconds relative to startTime
, -1 if not available.
[Required]
[JsonPropertyName("responseEnd")]
public float ResponseEnd { get; set; }
Property Value
ResponseStart
Time immediately after the browser receives the first byte of the response from
the server, cache, or local resource. The value is given in milliseconds relative
to startTime
, -1 if not available.
[Required]
[JsonPropertyName("responseStart")]
public float ResponseStart { get; set; }
Property Value
SecureConnectionStart
Time immediately before the browser starts the handshake process to secure the current
connection. The value is given in milliseconds relative to startTime
, -1
if not available.
[Required]
[JsonPropertyName("secureConnectionStart")]
public float SecureConnectionStart { get; set; }
Property Value
StartTime
Request start time in milliseconds elapsed since January 1, 1970 00:00:00 UTC
[Required]
[JsonPropertyName("startTime")]
public float StartTime { get; set; }