Discuss this help topic in SecureBlackbox Forum

TElSFTPServer.OnSend

TElSFTPServer     See also     


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


This event is fired when TElSFTPServer needs to transfer the encrypted data to the client

Declaration

[C#]
    not available

[VB.NET]
    not available

[Pascal]
    property OnSend: TSBSFTPServerSendEvent;
    TSBSFTPServerSendEvent = procedure(Sender : TObject; Buffer: pointer; Size: integer) of object;

[C++]
    not available

[PHP]
    not available

[Java]
    not available

Parameters

  • Buffer - The buffer with encrypted data
  • Size - The length of the data in buffer (in bytes)
  • Offset - position from which data are sent

Description

    This event is fired when TElSFTPServer needs to transfer the portion of encrypted data to the client. it is a good idea to call a send function from this event's handler.

You must handle this event in any case. There is no other way to pass the encrypted data from TElSFTPServer to client, except this event!

See also:     OnReceive    

Discuss this help topic in SecureBlackbox Forum