I'm doing a very small app that has to display some web page(like a "kiosk"). Some of the pages that I've are only accessible in HTTPS but don't have a valid SSL certificate.
Is there a way to force the WPF WebBrowser
control to allow any SSL certificate?
Something like:
<Grid>
<WebBrowser helpers:WebBrowserUtility.BindableSource="{Binding UrlToDisplay}" AllowInvalidSSL="true"></WebBrowser>
</Grid>
If not, can you think to an alternative?