SecureBlackbox

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

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


TElSSLClient.OnOpenConnection

TElSSLClient     See also     


 

This event is fired when secure connection is established.

 

Declaration

[C#/Java]
    event TSBOpenConnectionEvent OnOpenConnection;
    delegate void TSBOpenConnectionEvent(object Sender);

[VB.NET]
    Event OnOpenConnection As TSBOpenConnectionEvent
    Delegate Sub TSBOpenConnectionEvent(ByVal Sender As Object)

[Pascal]
    property OnOpenConnection : TSBOpenConnectionEvent;
    TSBOpenConnectionEvent = procedure (Sender: TObject) of object;

[C++]
    not implemented;

   

Description

    This event is fired by TElSSLClient when it has established secure session. After this event is fired the application can send the data.

   

See also:     SendData     OnCloseConnection    

 
Back to top