Discuss this help topic in SecureBlackbox Forum

TElSSLClient.Open

TElSSLClient     See also     


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


Initiates SSL session.

Declaration

[C#]
    void Open();

[VB.NET]
    Sub Open()

[Pascal]
    procedure Open;

[C++]
    void Open();

[PHP]
    void Open()

[Java]
    void open();

Description

    This method causes TElSSLClient to initiate SSL handshake. Call this method after transport has established connection.
    If SSL is not enabled (Enabled property is set to false), TElSSLClient does nothing and returns immediately.
    The method is asynhronous and after its return, the SSL session is not yet established. If SSL is enabled, the application should call DataAvailable in loop until either Active property becomes True or error happens (the application is notified about an error via OnError event). See samples for more details.

See also:     Enabled     Close    

Discuss this help topic in SecureBlackbox Forum