Request Paused Event
data class RequestPausedEvent(requestId: RequestId, request: Request, frameId: FrameId, resourceType: ResourceType, responseErrorReason: ErrorReason?, responseStatusCode: Int?, responseHeaders: List<HeaderEntry>?, networkId: RequestId?) : Event
Content copied to clipboard
Issued when the domain is enabled and the request URL matches the specified filter. The request is paused until the client responds with one of continueRequest, failRequest or fulfillRequest. The stage of the request can be determined by presence of responseErrorReason and responseStatusCode -- the request is at the response stage if either of these fields is present and in the request stage otherwise.
Constructors
RequestPausedEvent
Link copied to clipboard
fun RequestPausedEvent(requestId: RequestId, request: Request, frameId: FrameId, resourceType: ResourceType, responseErrorReason: ErrorReason? = null, responseStatusCode: Int? = null, responseHeaders: List<HeaderEntry>? = null, networkId: RequestId? = null)
Content copied to clipboard
Functions
Properties
resourceType
Link copied to clipboard
responseErrorReason
Link copied to clipboard
responseHeaders
Link copied to clipboard
responseStatusCode
Link copied to clipboard
Sources
jvm source
Link copied to clipboard