Discuss this help topic in SecureBlackbox Forum
This event is fired when some data is 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 TElHTTPSServer when it has received some data.
Discuss this help topic in SecureBlackbox Forum