Sometimes when loading an image from internet, a WebException would be thrown with the following message:
The request was aborted: Could not create SSL/TLS secure channel
I currently don't have another computer to test on, but on my machine the following snippet throws de exception 100% of time (maybe because the website does not support TLS 1.0 and/or 1.1?):
<htmlRenderer:HtmlPanel Text="<html><body><img src="https://eleaut.com.br/imagens_assinatura/logo.png" /></body></html> " />
Apparently the error can be solved quite simply by adding the following line (taken from here):
ServicePointManager.SecurityProtocol = SecurityProtocolType.Tls12;
Or, since we are on .NET 3.0, this one:
ServicePointManager.SecurityProtocol = (SecurityProtocolType)3072;
I'll do a PR as soon as I can :)