Discuss this help topic in SecureBlackbox Forum
This event is fired when the component has prepared some data to be sent to the server.
Declaration
[Java]
TSBSendEvent getOnSend();
void setOnSend(TSBSendEvent Value);
TSBSendEvent.Callback OnSend = new TSBSendEvent.Callback() {
public void TSBSendEventCallback(TObject arg0, byte[] arg1) {
//...
}
}
Parameters
- Buffer - the buffer containing the data to be sent.
- Size - the number of bytes in the buffer that should actually be read from it, and sent to the server.
Description
TElSAMLIdentityProvider fires this event when it has prepared some data that needs to be sent to the server.
The handler of this event should take care of the transport.
Discuss this help topic in SecureBlackbox Forum