Skip to content

Commit 2ca0f43

Browse files
committed
Merge pull request #488 from karlhiramoto/certs
provide access to settings boolean ignore_certificate_errors
2 parents 2c755a0 + 077ac64 commit 2ca0f43

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

CefSharp.Core/CefSettings.h

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -89,6 +89,12 @@ namespace CefSharp
8989
void set(String^ value) override { StringUtils::AssignNativeFromClr(_cefSettings->cache_path, value); }
9090
}
9191

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+
9298
virtual property String^ Locale
9399
{
94100
String^ get() override { return StringUtils::ToClr(_cefSettings->locale); }

0 commit comments

Comments
 (0)