Discuss this help topic in SecureBlackbox Forum
This event is fired when some data from server received.
Declaration
[Java]
TSBDataEvent getOnData();
void setOnData(TSBDataEvent Value);
TSBDataEvent.Callback OnData = new TSBDataEvent.Callback() {
public void TSBDataEventCallback(TObject arg0, byte[] arg1) {
//...
}
}
Parameters
- Buffer - buffer with received data
- Size - size of the received data
Description
This event is fired by TElHTTPSClient when some data from server is received.
Discuss this help topic in SecureBlackbox Forum