Table of Contents
- Getting Started
- EO.Pdf
- EO.Web
- EO.WebBrowser
- EO.Wpf
- Common Topics
- Reference
- .NET API Reference
- EO.Base
- EO.Base.UI
- EO.Extensions
- EO.Pdf
- EO.Pdf.Acm
- EO.Pdf.Contents
- EO.Pdf.Drawing
- EO.Pdf.Mvc
- EO.Web
- EO.WebBrowser
- EO.WebBrowser
- Classes
- Interfaces
- Enumerations
- ConsoleMessageSeverity Enumeration
- ConsoleMessageType Enumeration
- ContextMenuMediaType Enumeration
- ContextMenuSourceFlags Enumeration
- DOMNodeType Enumeration
- DownloadState Enumeration
- EditState Enumeration
- ErrorCode Enumeration
- EventFlags Enumeration
- FileDialogMode Enumeration
- InputMsgTarget Enumeration
- JSDialogType Enumeration
- JSInvokeResult Enumeration
- KeyboardEventType Enumeration
- KeyCode Enumeration
- MediaState Enumeration
- MouseEventType Enumeration
- NavigationType Enumeration
- Permissions Enumeration
- PostDataItemType Enumeration
- PrintResult Enumeration
- ResourceType Enumeration
- WebViewCloseReason Enumeration
- Delegates
- EO.WebBrowser.DOM
- EO.WebEngine
- EO.WinForm
- EO.Wpf
- EO.Wpf.Gauge
- EO.Wpf.Gauge.Shapes
- EO.Wpf.Primitives
- EO.Wpf.Themes.Aero
- EO.Wpf.Themes.Classic
- EO.Wpf.Themes.Luna
- EO.Wpf.Themes.Metro
- EO.Wpf.Themes.Royale
- JavaScript API Reference
- .NET API Reference
ErrorCode Enumeration |
An enumeration of error codes.
Namespace:
EO.WebBrowser
Assembly: EO.WebBrowser (in EO.WebBrowser.dll)
Syntax
public enum ErrorCode
Remarks
Negative values in this enum corresponds to network error code defined by the Chromium browser engine. This enum defines some of the most common values, but not all values defined by the browser engine. For a complete list of all values see here.
Members
Member Name | Description |
---|---|
ProceedAsDownload | The request was processed as a download. |
ProceedAsLaunchUrl | The request is not handled by the browser engine, LaunchUrl event is raised. |
OK | No error occurred. |
GenericError | A generic failure occurred. |
Canceled | The request was canceled. |
InvalidArgument | An argument to the function is incorrect. |
InvalidHandle | The handle or file descriptor is invalid. |
FileNotFound | The file or directory cannot be found. |
TimedOut | An operation timed out. |
FileTooBig | The file is too large. |
UnexpectedError | An unexpected error has ocurred. |
AccessDenied | Permission to access a resource, other than the network, was denied. |
NotImplemented | The operation failed because of unimplemented functionality. |
ConnectionClosed | The connection was closed. |
ConnectionReset | The connection was reset. |
ConnectionRefused | A connection attempt was refused. |
ConnectionAborted | The connection was aborted. |
ConnectionFailed | A connection attempt failed. |
NameNotResolved | The host name could not be resolved. |
InternetDisconnected | The Internet connection has been lost. |
SSLProtocolError | An SSL protocol error occurred. |
AddressInvalid | The IP address or port number is invalid. |
AddressUnreachable | The IP address is unreachable. This usually means that there is no route to the specified host or network. |
SSLClientCertificateNeeded | The server requested a client certificate for SSL client authentication. |
TunnelConnectionFailed | A tunnel connection through the proxy could not be established. |
NoSSLVersionsEnabled | No SSL protocol versions are enabled. |
SSLVersionOrCipherMismatch | The client and server don't support a common SSL protocol version or cipher suite. |
SSLRenegotiationRequested | The server requested a renegotiation (rehandshake). |
ConnectionTimeout | A connection attempt timed out. |
HostResolverQueueTooLarge | There are too many pending DNS resolves, so a request in the queue was aborted. |
SocksConnectionFailed | Failed establishing a connection to the SOCKS proxy server for a target host. |
SocksConnectionHostUnreachable | The SOCKS proxy server failed establishing connection to the target host because that host is unreachable. |
NpnNegotiationFailed | The request to negotiate an alternate protocol failed. |
SslNoRenegotiation | The peer sent an SSL no_renegotiation alert message. |
ProxyConnectionFailed | Could not create a connection to the proxy server. |
CertificateCommonNameInvalid | The server responded with a certificate whose common name did not match the host name. |
CertificateDateInvalid | The server responded with a certificate that, by our clock, appears to either not yet be valid or to have expired. |
CertificateAuthorityInvalid | The server responded with a certificate that is signed by an authority we don't trust. |
CertificateContainsError | The server responded with a certificate that contains errors. |
CertificateNoRevocationMechanism | The certificate has no mechanism for determining if it is revoked. |
CertificateUnableTocheckRevocation | Revocation information for the security certificate for this site is not available. |
CertificateRevoked | The server responded with a certificate has been revoked. |
CertificateInvalid | The server responded with a certificate that is invalid. |
InvalidUrl | The URL is invalid. |
DisallowedUrlScheme | The scheme of the URL is disallowed. |
UnknownUrlScheme | The scheme of the URL is unknown. |
TooManyRedirects | Attempting to load an URL resulted in too many redirects. |
UnsafeRedirect | Attempting to load an URL resulted in an unsafe redirect (e.g., a redirect to file:// is considered unsafe). |
UnsafePort | Attempting to load an URL with an unsafe port number. |
InvalidResponse | The server's response was invalid. |
InvalidChunkedEncoding | Error in chunked transfer encoding. |
MethodNotSupported | The server did not support the request method. |
EmptyResponse | The server closed the connection without sending any data. |
ResponseHeadersTooBig | The headers section of the response is too large. |
InvalidSpdyStream | Attempted use of an unknown SPDY stream id. |
InsecureResponse | The server's response was insecure (e.g. there was a cert error). |
See Also