Discuss this help topic in SecureBlackbox Forum
This event is fired after TElPGPUnenvelopingStream FileName and Timestamp were read.
Declaration
[C#]
event TNotifyEvent OnInfo;
delegate void TNotifyEvent(Object Sender);
[VB.NET]
Event OnInfo As TNotifyEvent
Delegate Sub TNotifyEvent(ByVal Sender As Object)
[Pascal]
property OnInfo : TNotifyEvent;
TNotifyEvent = procedure (Sender: TObject) of object;
[C++]
void get_OnInfo(TNotifyEvent &pMethodOutResult, void * &pDataOutResult);
void set_OnInfo(TNotifyEvent pMethodValue, void * pDataValue);
typedef void (SB_CALLBACK *TNotifyEvent)(void * _ObjectData, TObjectHandle Sender);
[PHP]
TNotifyEvent|callable|NULL get_OnInfo()
void set_OnInfo(TNotifyEvent|callable|NULL $Value)
callable TNotifyEvent(TObject $Sender)
[Java]
TNotifyEvent getOnInfo();
void setOnInfo(TNotifyEvent Value);
TNotifyEvent.Callback OnInfo = new TNotifyEvent.Callback() {
public void TNotifyEventCallback(TObject Sender) {
//...
}
}
Description
This event is fired by
TElPGPUnenvelopingStream when it has read FileName and Timestamp.
Discuss this help topic in SecureBlackbox Forum