WebErrorStatus enum

The error status of a failed navigation, reported on WebviewController.onLoadError.

Mirrors COREWEBVIEW2_WEB_ERROR_STATUS; see Microsoft's documentation.

Inheritance
Available extensions

Values

unknown → const WebErrorStatus

An unknown error occurred.

certificateCommonNameIsIncorrect → const WebErrorStatus

The SSL certificate common name does not match the web address.

certificateExpired → const WebErrorStatus

The SSL certificate has expired.

clientCertificateContainsErrors → const WebErrorStatus

The SSL client certificate contains errors.

certificateRevoked → const WebErrorStatus

The SSL certificate has been revoked.

certificateIsInvalid → const WebErrorStatus

The SSL certificate is invalid.

serverUnreachable → const WebErrorStatus

The host is unreachable.

timeout → const WebErrorStatus

The connection has timed out.

errorHttpInvalidServerResponse → const WebErrorStatus

The server returned an invalid or unrecognized response.

connectionAborted → const WebErrorStatus

The connection was aborted.

connectionReset → const WebErrorStatus

The connection was reset.

disconnected → const WebErrorStatus

The internet connection has been lost.

cannotConnect → const WebErrorStatus

A connection to the destination was not established.

hostNameNotResolved → const WebErrorStatus

The provided host name was not able to be resolved.

operationCanceled → const WebErrorStatus

The operation was canceled.

redirectFailed → const WebErrorStatus

The request redirect failed.

unexpectedError → const WebErrorStatus

An unexpected error occurred.

validAuthenticationCredentialsRequired → const WebErrorStatus

The request requires authentication credentials.

validProxyAuthenticationRequired → const WebErrorStatus

The request requires proxy authentication.

Properties

hashCode int
The hash code for this object.
no setterinherited
index int
A numeric identifier for the enumerated value.
no setterinherited
name String

Available on Enum, provided by the EnumName extension

The name of the enum value.
no setter
runtimeType Type
A representation of the runtime type of the object.
no setterinherited

Methods

noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
toString() String
A string representation of this object.
inherited

Operators

operator ==(Object other) bool
The equality operator.
inherited

Constants

values → const List<WebErrorStatus>
A constant List of the values in this enum, in order of their declaration.