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

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.

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