Discuss this help topic in SecureBlackbox Forum
This event is used to write 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 data to be written to the socket.
- Size - the length of Buffer in bytes.
Description
This event is fired by TElSAMLServiceProvider when it has prepared a piece of data that should be written to the socket.
Discuss this help topic in SecureBlackbox Forum