Table of Contents

Class RequestAbortErrorCode

Namespace
Microsoft.Playwright
Assembly
Microsoft.Playwright.dll

Abort error codes.

public static class RequestAbortErrorCode
Inheritance
RequestAbortErrorCode
Inherited Members

Fields

Aborted

An operation was aborted (due to user action).

public const string Aborted = "aborted"

Field Value

string

AccessDenied

Permission to access a resource, other than the network, was denied.

public const string AccessDenied = "accessdenied"

Field Value

string

AddressUnreachable

The IP address is unreachable. This usually means that there is no route to the specified host or network.

public const string AddressUnreachable = "addressunreachable"

Field Value

string

BlockedByClient

The client chose to block the request.

public const string BlockedByClient = "blockedbyclient"

Field Value

string

BlockedByResponse

The request failed because the response was delivered along with requirements which are not met ('X-Frame-Options' and 'Content-Security-Policy' ancestor checks, for instance).

public const string BlockedByResponse = "blockedbyresponse"

Field Value

string

ConnectionAborted

A connection timed out as a result of not receiving an ACK for data sent.

public const string ConnectionAborted = "connectionaborted"

Field Value

string

ConnectionClosed

A connection was closed (corresponding to a TCP FIN).

public const string ConnectionClosed = "connectionclosed"

Field Value

string

ConnectionFailed

A connection attempt failed.

public const string ConnectionFailed = "connectionfailed"

Field Value

string

ConnectionRefused

A connection attempt was refused.

public const string ConnectionRefused = "connectionrefused"

Field Value

string

ConnectionReset

A connection was reset (corresponding to a TCP RST).

public const string ConnectionReset = "connectionreset"

Field Value

string

Failed

A generic failure occurred.

public const string Failed = "failed"

Field Value

string

InternetDisconnected

The Internet connection has been lost.

public const string InternetDisconnected = "internetdisconnected"

Field Value

string

NameNotResolved

The host name could not be resolved.

public const string NameNotResolved = "namenotresolved"

Field Value

string

TimedOut

An operation timed out.

public const string TimedOut = "timedout"

Field Value

string