Discuss this help topic in SecureBlackbox Forum
This event is fired when an unknown extended reply is received from the server.
Declaration
[Java]
TSBSftpDataEvent getOnExtendedReply();
void setOnExtendedReply(TSBSftpDataEvent Value);
TSBSftpDataEvent.Callback OnExtendedReply = new TSBSftpDataEvent.Callback() {
public void TSBSftpDataEventCallback(TObject arg0, byte[] arg1) {
//...
}
}
Parameters
- Buffer - buffer containing the server's reply.
- Size - size of the Buffer in bytes.
Description
This event is fired by TElSftpClient when an unknown extended reply is received from the server.
Discuss this help topic in SecureBlackbox Forum