We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 2c755a0 + 077ac64 commit 2ca0f43Copy full SHA for 2ca0f43
CefSharp.Core/CefSettings.h
@@ -89,6 +89,12 @@ namespace CefSharp
89
void set(String^ value) override { StringUtils::AssignNativeFromClr(_cefSettings->cache_path, value); }
90
}
91
92
+ virtual property bool IgnoreCertificateErrors
93
+ {
94
+ bool get() { return _cefSettings->ignore_certificate_errors; }
95
+ void set(bool value) { _cefSettings->ignore_certificate_errors = value; }
96
+ }
97
+
98
virtual property String^ Locale
99
{
100
String^ get() override { return StringUtils::ToClr(_cefSettings->locale); }
0 commit comments