diff --git a/CefSharp/Enums/CefErrorCode.cs b/CefSharp/Enums/CefErrorCode.cs index 68c5d25a3d..5759f79786 100644 --- a/CefSharp/Enums/CefErrorCode.cs +++ b/CefSharp/Enums/CefErrorCode.cs @@ -1464,5 +1464,12 @@ public enum CefErrorCode /// Failed to resolve the hostname of a DNS-over-HTTPS server. /// DnsSecureResolverHostnameResolutionFailed = -808, + + /// + /// DNS identified the request as disallowed for insecure connection (http/ws). + /// Error should be handled as if an HTTP redirect was received to redirect to + /// https or wss. + /// + DnsNameHttpsOnly = 809, }; }