Class RequestSizesResult
- Namespace
- Microsoft.Playwright
- Assembly
- Microsoft.Playwright.dll
public class RequestSizesResult
- Inheritance
-
RequestSizesResult
- Inherited Members
Constructors
RequestSizesResult()
public RequestSizesResult()
Properties
RequestBodySize
Size of the request body (POST data payload) in bytes. Set to 0 if there was no body.
[Required]
[JsonPropertyName("requestBodySize")]
public int RequestBodySize { get; set; }
Property Value
RequestHeadersSize
Total number of bytes from the start of the HTTP request message until (and including) the double CRLF before the body.
[Required]
[JsonPropertyName("requestHeadersSize")]
public int RequestHeadersSize { get; set; }
Property Value
ResponseBodySize
Size of the received response body (encoded) in bytes.
[Required]
[JsonPropertyName("responseBodySize")]
public int ResponseBodySize { get; set; }
Property Value
ResponseHeadersSize
Total number of bytes from the start of the HTTP response message until (and including) the double CRLF before the body.
[Required]
[JsonPropertyName("responseHeadersSize")]
public int ResponseHeadersSize { get; set; }