Table of Contents

Class HttpRequestData

Namespace
OpenQA.Selenium
Assembly
WebDriver.dll

Represents the response data for an intercepted HTTP call.

public class HttpRequestData
Inheritance
HttpRequestData
Inherited Members

Constructors

HttpRequestData()

Initializes a new instance of the HttpRequestData type.

public HttpRequestData()

Properties

Headers

Gets the headers of the HTTP request.

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

Property Value

Dictionary<string, string>

Method

Gets the method of the HTTP request.

public string? Method { get; set; }

Property Value

string

PostData

Gets the POST data of the HTTP request, if any.

public string? PostData { get; set; }

Property Value

string

RequestId

Gets the ID of the HTTP request.

public string? RequestId { get; }

Property Value

string

Url

Gets the URL of the HTTP request.

public string? Url { get; set; }

Property Value

string