2022-08-06 14:49:20 +00:00
|
|
|
---
|
|
|
|
sidebar_label: HTTPRequest.interceptResolutionState
|
|
|
|
---
|
|
|
|
|
|
|
|
# HTTPRequest.interceptResolutionState() method
|
|
|
|
|
2023-04-03 08:23:08 +00:00
|
|
|
An InterceptResolutionState object describing the current resolution action and priority.
|
|
|
|
|
|
|
|
InterceptResolutionState contains: action: InterceptResolutionAction priority?: number
|
|
|
|
|
|
|
|
InterceptResolutionAction is one of: `abort`, `respond`, `continue`, `disabled`, `none`, or `already-handled`.
|
|
|
|
|
2022-10-24 14:31:12 +00:00
|
|
|
#### Signature:
|
2022-08-06 14:49:20 +00:00
|
|
|
|
|
|
|
```typescript
|
|
|
|
class HTTPRequest {
|
2024-04-05 13:11:52 +00:00
|
|
|
interceptResolutionState(): InterceptResolutionState;
|
2022-08-06 14:49:20 +00:00
|
|
|
}
|
|
|
|
```
|
|
|
|
|
|
|
|
**Returns:**
|
|
|
|
|
|
|
|
[InterceptResolutionState](./puppeteer.interceptresolutionstate.md)
|