Enum InterceptResolutionAction
- Namespace
- PuppeteerSharp
- Assembly
- PuppeteerSharp.dll
Represents the action taken for an intercepted request.
[JsonConverter(typeof(JsonStringEnumMemberConverter<InterceptResolutionAction>))]
public enum InterceptResolutionAction
Fields
Abort = 0The request will be aborted.
AlreadyHandled = 5The interception has already been handled.
Continue = 2The request will continue normally.
Disabled = 3Request interception is disabled.
None = 4No interception action has been set yet.
Respond = 1The request will be fulfilled with a custom response.