Discuss this help topic in SecureBlackbox Forum
This event is used to write the encrypted data to the socket.
Declaration
[Java]
TSBSendEvent getOnSend();
void setOnSend(TSBSendEvent Value);
TSBSendEvent.Callback OnSend = new TSBSendEvent.Callback() {
public void TSBSendEventCallback(TObject arg0, byte[] arg1) {
//...
}
}
Parameters
- Buffer - the block of encoded data that is to be written to the socket.
- Size - the length of the buffer in bytes.
Description
This event is fired by TElHTTPSServer when it wants to write the encoded data block to the socket.
Discuss this help topic in SecureBlackbox Forum