Discuss this help topic in SecureBlackbox Forum
This event is fired when TElAS3Client
receives command from the server.
Declaration
[Pascal]
not implemented;
[Java]
TSBFTPSTextDataAsStringEvent getOnControlReceiveAsString();
void setOnControlReceiveAsString(TSBFTPSTextDataAsStringEvent Value);
TSBFTPSTextDataAsStringEvent.Callback OnControlReceiveAsString = new TSBFTPSTextDataAsStringEvent.Callback() {
public void TSBFTPSTextDataAsStringEventCallback(TObject arg0, String arg1) {
//...
}
}
Parameters
- TextLine - text line that contains command
Description
This event is fired when TElAS3Client receives command from the server.
This event is similar to
OnControlReceive,
except that
TextLine is converted from byte array using the server codepage and charset.
Discuss this help topic in SecureBlackbox Forum