Selenium.WebDriver by Selenium Committers

<PackageReference Include="Selenium.WebDriver" Version="4.16.1" />

.NET API 4,321,792 bytes

 HttpResponseData

public class HttpResponseData
Represents the response data for an intercepted HTTP call.
public string Body { get; set; }

Gets or sets the body of the HTTP response.

public List<string> CookieHeaders { get; }

Gets the cookie headers of the HTTP response.

public string ErrorReason { get; set; }

Gets or sets the reason for an error response.

public Dictionary<string, string> Headers { get; }

Gets the headers of the HTTP response.

public string RequestId { get; set; }

Gets or sets the ID of the request that generated this response.

public string ResourceType { get; set; }

Gets or sets the type of resource for this response.

public long StatusCode { get; set; }

Gets or sets the numeric status code of the HTTP response.

public string Url { get; set; }

Gets or sets the URL of the HTTP response.