chrome-devtools-kotlin / org.hildan.chrome.devtools.domains.network.events / NetworkEvent / RequestWillBeSentExtraInfoEvent

RequestWillBeSentExtraInfoEvent

data class RequestWillBeSentExtraInfoEvent : NetworkEvent

Constructors

<init>

RequestWillBeSentExtraInfoEvent(requestId: RequestId, associatedCookies: List<BlockedCookieWithReason>, headers: Headers)

Properties

associatedCookies

A list of cookies potentially associated to the requested URL. This includes both cookies sent with the request and the ones not sent; the latter are distinguished by having blockedReason field set.

val associatedCookies: List<BlockedCookieWithReason>

headers

Raw request headers as they will be sent over the wire.

val headers: Headers

requestId

Request identifier. Used to match this information to an existing requestWillBeSent event.

val requestId: RequestId