Class ContinueResponseCommandSettings
Continues loading of the paused response, optionally modifying the response headers. If either responseCode or headers are modified, all of them must be present.
public sealed class ContinueResponseCommandSettings : ICommand
- Inheritance
-
ContinueResponseCommandSettings
- Implements
- Inherited Members
Properties
BinaryResponseHeaders
Alternative way of specifying response headers as a \0-separated series of name: value pairs. Prefer the above method unless you need to represent some non-UTF8 values that can't be transmitted over the protocol as text.
[JsonPropertyName("binaryResponseHeaders")]
[JsonIgnore(Condition = JsonIgnoreCondition.WhenWritingDefault)]
public string? BinaryResponseHeaders { get; set; }
Property Value
CommandName
Gets the name of the command.
[JsonIgnore]
public string CommandName { get; }
Property Value
RequestId
An id the client received in requestPaused event.
[JsonPropertyName("requestId")]
public string RequestId { get; set; }
Property Value
ResponseCode
An HTTP response code. If absent, original response code will be used.
[JsonPropertyName("responseCode")]
[JsonIgnore(Condition = JsonIgnoreCondition.WhenWritingDefault)]
public long? ResponseCode { get; set; }
Property Value
- long?
ResponseHeaders
Response headers. If absent, original response headers will be used.
[JsonPropertyName("responseHeaders")]
[JsonIgnore(Condition = JsonIgnoreCondition.WhenWritingDefault)]
public HeaderEntry[]? ResponseHeaders { get; set; }
Property Value
ResponsePhrase
A textual representation of responseCode. If absent, a standard phrase matching responseCode is used.
[JsonPropertyName("responsePhrase")]
[JsonIgnore(Condition = JsonIgnoreCondition.WhenWritingDefault)]
public string? ResponsePhrase { get; set; }