Class HttpRequestData
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
Method
Gets the method of the HTTP request.
public string? Method { get; set; }
Property Value
PostData
Gets the POST data of the HTTP request, if any.
public string? PostData { get; set; }
Property Value
RequestId
Gets the ID of the HTTP request.
public string? RequestId { get; }
Property Value
Url
Gets the URL of the HTTP request.
public string? Url { get; set; }