Discuss this help topic in SecureBlackbox Forum
This event is fired when the data is available from client.
Declaration
[Java]
TSBSendEvent getOnTransferDataAvailable();
void setOnTransferDataAvailable(TSBSendEvent Value);
TSBSendEvent.Callback OnTransferDataAvailable = new TSBSendEvent.Callback() {
public void TSBSendEventCallback(TObject arg0, byte[] arg1) {
//...
}
}
Parameters
- Buffer - the block of data received from client.
- Size - the length of the buffer in bytes.
Description
This event is fired by TElFTPSServer when data has been received from client.
For example, if client wants to upload a file to the FTPS server, this event is fired when the data has been received.
Discuss this help topic in SecureBlackbox Forum