Discuss this help topic in SecureBlackbox Forum
This event is fired when TElPGPStream has some data to be written.
Declaration
[Java]
TSBPGPWriteEvent getOnWrite();
void setOnWrite(TSBPGPWriteEvent Value);
TSBPGPWriteEvent.Callback OnWrite = new TSBPGPWriteEvent.Callback() {
public void TSBPGPWriteEventCallback(TObject arg0, TObject arg1, byte[] arg2, int arg3, int arg4) {
//...
}
}
Parameters
- UserData - data passed as AReadUserData to Process method.
- Buffer - buffer with data to be saved to stream.
- Index - Index of the first byte in the Buffer from which to start reading.
- Size - Size of the Buffer (.NET: number of bytes to be read from the Buffer)
Description
This event is fired by TElPGPStream when it has some data to write.
Discuss this help topic in SecureBlackbox Forum