23 lines
1.4 KiB
Markdown
23 lines
1.4 KiB
Markdown
|
<!-- Do not edit this file. It is automatically generated by API Documenter. -->
|
||
|
|
||
|
[Home](./index.md) > [puppeteer](./puppeteer.md) > [Protocol](./puppeteer.protocol.md) > [Network](./puppeteer.protocol.network.md) > [BlockedSetCookieWithReason](./puppeteer.protocol.network.blockedsetcookiewithreason.md)
|
||
|
|
||
|
## Protocol.Network.BlockedSetCookieWithReason interface
|
||
|
|
||
|
A cookie which was not stored from a response with the corresponding reason.
|
||
|
|
||
|
<b>Signature:</b>
|
||
|
|
||
|
```typescript
|
||
|
export interface BlockedSetCookieWithReason
|
||
|
```
|
||
|
|
||
|
## Properties
|
||
|
|
||
|
| Property | Type | Description |
|
||
|
| --- | --- | --- |
|
||
|
| [blockedReasons](./puppeteer.protocol.network.blockedsetcookiewithreason.blockedreasons.md) | [SetCookieBlockedReason](./puppeteer.protocol.network.setcookieblockedreason.md)<!-- -->\[\] | The reason(s) this cookie was blocked. |
|
||
|
| [cookie](./puppeteer.protocol.network.blockedsetcookiewithreason.cookie.md) | [Cookie](./puppeteer.protocol.network.cookie.md) | The cookie object which represents the cookie which was not stored. It is optional because sometimes complete cookie information is not available, such as in the case of parsing errors. |
|
||
|
| [cookieLine](./puppeteer.protocol.network.blockedsetcookiewithreason.cookieline.md) | string | The string representing this individual cookie as it would appear in the header. This is not the entire "cookie" or "set-cookie" header which could have multiple cookies. |
|
||
|
|