Discuss this help topic in SecureBlackbox Forum
This event is fired when the file is downloaded in text mode.
Declaration
[Pascal]
not implemented;
[Java]
TSBFTPSTextDataAsStringEvent getOnTextDataLineAsString();
void setOnTextDataLineAsString(TSBFTPSTextDataAsStringEvent Value);
TSBFTPSTextDataAsStringEvent.Callback OnTextDataLineAsString = new TSBFTPSTextDataAsStringEvent.Callback() {
public void TSBFTPSTextDataAsStringEventCallback(TObject arg0, String arg1) {
//...
}
}
Parameters
- TextLine - next portion of data from the server
Description
This event is fired by TElAS3Client consequently (thus returning the
file data string by string), until the whole file is received.
This event is similar to
OnTextDataLine,
except that
TextLine is converted from byte array using the value of
RemoteCodePage property.
Discuss this help topic in SecureBlackbox Forum