Discuss this help topic in SecureBlackbox Forum
This event is fired when the block of data is received from the server
Declaration
[Java]
TSBSftpDataEvent getOnData();
void setOnData(TSBSftpDataEvent Value);
TSBSftpDataEvent.Callback OnData = new TSBSftpDataEvent.Callback() {
public void TSBSftpDataEventCallback(TObject arg0, byte[] arg1) {
//...
}
}
Parameters
- Buffer - reference to received data
- Size - the size of Buffer in bytes
Description
This event is fired by TElSftpClient when new data are received and decrypted.
Discuss this help topic in SecureBlackbox Forum