SecureBlackbox

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

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


TElSSLClient.OnSend

TElSSLClient     See also     


 

This event is used to write the encrypted data to the socket.

 

Declaration

[C#/Java]
    event TSBSendEvent OnSend;
    delegate void TSBSendEvent(object Sender, byte[] Buffer);

[VB.NET]
    Event OnSend As TSBSendEvent
    Delegate Sub TSBSendEvent(ByVal Sender As Object, ByVal Buffer As Byte())

[Pascal]
    property OnSend : TSBDataEvent;
    TSBSendEvent = procedure (Sender: TObject; Buffer : Pointer; Size : LongInt) of object;

[C++]
    not implemented;

   

Parameters

  • Buffer - the block of encoded data that is to be written to the socket.
  • Size - the length of the buffer in bytes.
   

Description

    This event is fired by TElSSLClient when it has encoded the data block and wants to write the encoded block to the socket.

   

See also:     SendData    

 
Back to top