This event is used to pass the decoded data to the application.
Declaration
[VB.NET]
Event OnData As TSBDataEvent
Delegate Sub TSBDataEvent(ByVal Sender As Object, ByVal Buffer As Byte())
Event OnData As TSBDataEvent
Delegate Sub TSBDataEvent(ByVal Sender As Object, ByVal Buffer As Byte())
[C++]
not implemented;
not implemented;
Parameters
- Buffer - the block of decoded data ready to use by application.
- Size - the length of the data block.
Description
This event is fired by TElSSLServer when it has decoded the received data block and this data block is ready to be used by the application.
If the application uses synchronous data exchange, it should write the data to some buffer and then synchronously read the data from that buffer.