M
Mike Fechner
Guest
Unfortunately you are correct. The ABL does not support implementing .NET delegate types, which is what the ServerCertificateValidationCallback property is. msdn.microsoft.com/.../system.net.security.remotecertificatevalidationcallback(v=vs.110).aspx But you just have to create a .NET class for the delegate. The rest of the code might return ABL. Typically, when I need to deal with synchronously called delegates, I write a C# class that implements the delegate and raises an event. That way I can implement an event handler in the ABL and keep most of the actual logic in ABL.
Continue reading...
Continue reading...