puppeteer/new-docs/puppeteer.protocol.network.responsereceivedextrainfoevent.md

24 lines
1.9 KiB
Markdown
Raw Normal View History

<!-- Do not edit this file. It is automatically generated by API Documenter. -->
[Home](./index.md) &gt; [puppeteer](./puppeteer.md) &gt; [Protocol](./puppeteer.protocol.md) &gt; [Network](./puppeteer.protocol.network.md) &gt; [ResponseReceivedExtraInfoEvent](./puppeteer.protocol.network.responsereceivedextrainfoevent.md)
## Protocol.Network.ResponseReceivedExtraInfoEvent interface
Fired when additional information about a responseReceived event is available from the network stack. Not every responseReceived event will have an additional responseReceivedExtraInfo for it, and responseReceivedExtraInfo may be fired before or after responseReceived.
<b>Signature:</b>
```typescript
export interface ResponseReceivedExtraInfoEvent
```
## Properties
| Property | Type | Description |
| --- | --- | --- |
| [blockedCookies](./puppeteer.protocol.network.responsereceivedextrainfoevent.blockedcookies.md) | [BlockedSetCookieWithReason](./puppeteer.protocol.network.blockedsetcookiewithreason.md)<!-- -->\[\] | A list of cookies which were not stored from the response along with the corresponding reasons for blocking. The cookies here may not be valid due to syntax errors, which are represented by the invalid cookie line string instead of a proper cookie. |
| [headers](./puppeteer.protocol.network.responsereceivedextrainfoevent.headers.md) | [Headers](./puppeteer.protocol.network.headers.md) | Raw response headers as they were received over the wire. |
| [headersText](./puppeteer.protocol.network.responsereceivedextrainfoevent.headerstext.md) | string | Raw response header text as it was received over the wire. The raw text may not always be available, such as in the case of HTTP/2 or QUIC. |
| [requestId](./puppeteer.protocol.network.responsereceivedextrainfoevent.requestid.md) | [RequestId](./puppeteer.protocol.network.requestid.md) | Request identifier. Used to match this information to another responseReceived event. |