Discuss this help topic in SecureBlackbox Forum
This event notifies user about the data being sent to server.
Declaration
[Java]
TSBDataEvent getOnSendData();
void setOnSendData(TSBDataEvent Value);
TSBDataEvent.Callback OnSendData = new TSBDataEvent.Callback() {
public void TSBDataEventCallback(TObject arg0, byte[] arg1) {
//...
}
}
Parameters
- Buffer - buffer with data to be sent
- Size - size of the data buffer
Description
This event is fired by TElHTTPSClient when some data (the body of HTTP request) is being sent to the server.
Discuss this help topic in SecureBlackbox Forum