Discuss this help topic in SecureBlackbox Forum
This event is used to write the encrypted data to the socket.
Declaration
[Java]
TSBSendEvent getOnDataSend();
void setOnDataSend(TSBSendEvent Value);
TSBSendEvent.Callback OnDataSend = new TSBSendEvent.Callback() {
public void TSBSendEventCallback(TObject arg0, byte[] arg1) {
//...
}
}
Parameters
- Buffer - the block of encoded data to be written to the socket.
- Size - the length of the buffer in bytes.
Description
This event is fired by TElFTPSServer when it has encoded the data block and wants to write it to the socket.
Discuss this help topic in SecureBlackbox Forum