Table of Contents

Enum InterceptResolutionAction

Namespace
PuppeteerSharp
Assembly
PuppeteerSharp.dll

Represents the action taken for an intercepted request.

[JsonConverter(typeof(JsonStringEnumMemberConverter<InterceptResolutionAction>))]
public enum InterceptResolutionAction

Fields

Abort = 0

The request will be aborted.

AlreadyHandled = 5

The interception has already been handled.

Continue = 2

The request will continue normally.

Disabled = 3

Request interception is disabled.

None = 4

No interception action has been set yet.

Respond = 1

The request will be fulfilled with a custom response.