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
AccessDenied
Permission to access a resource, other than the network, was denied.
public const string AccessDenied = "accessdenied"
Field Value
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
BlockedByClient
The client chose to block the request.
public const string BlockedByClient = "blockedbyclient"
Field Value
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
ConnectionAborted
A connection timed out as a result of not receiving an ACK for data sent.
public const string ConnectionAborted = "connectionaborted"
Field Value
ConnectionClosed
A connection was closed (corresponding to a TCP FIN).
public const string ConnectionClosed = "connectionclosed"
Field Value
ConnectionFailed
A connection attempt failed.
public const string ConnectionFailed = "connectionfailed"
Field Value
ConnectionRefused
A connection attempt was refused.
public const string ConnectionRefused = "connectionrefused"
Field Value
ConnectionReset
A connection was reset (corresponding to a TCP RST).
public const string ConnectionReset = "connectionreset"
Field Value
Failed
A generic failure occurred.
public const string Failed = "failed"
Field Value
InternetDisconnected
The Internet connection has been lost.
public const string InternetDisconnected = "internetdisconnected"
Field Value
NameNotResolved
The host name could not be resolved.
public const string NameNotResolved = "namenotresolved"
Field Value
TimedOut
An operation timed out.
public const string TimedOut = "timedout"