SecureBlackbox

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

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


TElSSLClient.OnKeepAliveResponse

TElSSLClient     See also     


 

This event is fired when a response to the heartbeat request is received.

 

Declaration

[C#/Java]
    TNotifyEvent OnKeepAliveResponse;
    delegate void TNotifyEvent(object Sender);

[VB.NET]
    Event OnKeepAliveResponse As TNotifyEvent
    Delegate Sub TNotifyEvent(ByVal Sender As Object)

[Pascal]
    property OnKeepAliveResponse : TNotifyEvent;
    TNotifyEvent = procedure (Sender : TObject) of object;

[C++]
    not implemented;

   

Description

    This event is fired by TElSSLClient when it has received a response to the heartbeat request.

   

See also:     SendKeepAlive    

 
Back to top