Class ContinueRequestCommandSettings
Continues the request, optionally modifying some of its parameters.
public sealed class ContinueRequestCommandSettings : ICommand
- Inheritance
-
ContinueRequestCommandSettings
- Implements
- Inherited Members
Properties
CommandName
Gets the name of the command.
[JsonIgnore]
public string CommandName { get; }
Property Value
Headers
If set, overrides the request headers. Note that the overrides do not extend to subsequent redirect hops, if a redirect happens. Another override may be applied to a different request produced by a redirect.
[JsonPropertyName("headers")]
[JsonIgnore(Condition = JsonIgnoreCondition.WhenWritingDefault)]
public HeaderEntry[]? Headers { get; set; }
Property Value
InterceptResponse
If set, overrides response interception behavior for this request.
[JsonPropertyName("interceptResponse")]
[JsonIgnore(Condition = JsonIgnoreCondition.WhenWritingDefault)]
public bool? InterceptResponse { get; set; }
Property Value
- bool?
Method
If set, the request method is overridden.
[JsonPropertyName("method")]
[JsonIgnore(Condition = JsonIgnoreCondition.WhenWritingDefault)]
public string? Method { get; set; }
Property Value
PostData
If set, overrides the post data in the request.
[JsonPropertyName("postData")]
[JsonIgnore(Condition = JsonIgnoreCondition.WhenWritingDefault)]
public string? PostData { get; set; }
Property Value
RequestId
An id the client received in requestPaused event.
[JsonPropertyName("requestId")]
public string RequestId { get; set; }
Property Value
Url
If set, the request url will be modified in a way that's not observable by page.
[JsonPropertyName("url")]
[JsonIgnore(Condition = JsonIgnoreCondition.WhenWritingDefault)]
public string? Url { get; set; }