SecureBlackbox

200+ components and classes for all aspects of digital security of your data

Filter: C#/Java  VB.NET  Pascal  C++  


TElSSLClient.AddCertTypeHandler

TElSSLClient     See also     


 

Attaches a certificate type handler.

 

Declaration

[C#/Java]
    void AddCertTypeHandler(TElSSLCertificateTypeHandler Handler);

[VB.NET]
    Sub AddCertTypeHandler(ByVal Handler As TElSSLCertificateTypeHandler)

[Pascal]
    procedure AddCertTypeHandler( Handler : TElSSLCertificateTypeHandler);

[C++]
    not implemented;

   

Parameters

  • Handler - The handler to attach.
   

Description

    Use this method to attach a certificate type handler, such as OpenPGP handler, for TLS communication. When the handler is attached, you can use alternative authentication methods that use this handler. Note that when you attach an OpenPGP handler, OpenPGP authentication is used automatically.
    Note, that this method is protected and can be used only from descendants of TElSSLClient.

   

See also:     RemoveCertTypeHandler     OnSend    

 
Back to top