Discuss this help topic in SecureBlackbox Forum
This event is fired when TElPGPStream needs a stream for temporary data storing.
Declaration
[Java]
TSBPGPTemporaryStreamEvent getOnTemporaryStream();
void setOnTemporaryStream(TSBPGPTemporaryStreamEvent Value);
TSBPGPTemporaryStreamEvent.Callback OnTemporaryStream = new TSBPGPTemporaryStreamEvent.Callback() {
public void TSBPGPTemporaryStreamEventCallback(TObject arg0, TElPGPCreateStreamEventParams arg1) {
//...
}
}
Parameters
- Stream - temporary stream.
- FreeOnFinish - specifies if the stream must be destroyed upon completion.
Description
This event is fired by
TElPGPStream when it needs a temporary stream for its operations.
TElPGPStream will destroy this stream only if
FreeOnFinish parameter value is true.
Discuss this help topic in SecureBlackbox Forum