Discuss this help topic in SecureBlackbox Forum
This event is fired when document receiving begins.
Declaration
[C#]
event TNotifyEvent OnDocumentBegin;
delegate void TNotifyEvent(Object Sender);
[VB.NET]
Event OnDocumentBegin As TNotifyEvent
Delegate Sub TNotifyEvent(ByVal Sender As Object)
[Pascal]
property OnDocumentBegin : TNotifyEvent;
TNotifyEvent = procedure(Sender : TObject) of object;
[C++]
void get_OnDocumentBegin(TNotifyEvent &pMethodOutResult, void * &pDataOutResult);
void set_OnDocumentBegin(TNotifyEvent pMethodValue, void * pDataValue);
typedef void (SB_CALLBACK *TNotifyEvent)(void * _ObjectData, TObjectHandle Sender);
[PHP]
TNotifyEvent|callable|NULL get_OnDocumentBegin()
void set_OnDocumentBegin(TNotifyEvent|callable|NULL $Value)
callable TNotifyEvent(TObject $Sender)
[Java]
TNotifyEvent getOnDocumentBegin();
void setOnDocumentBegin(TNotifyEvent Value);
TNotifyEvent.Callback OnDocumentBegin = new TNotifyEvent.Callback() {
public void TNotifyEventCallback(TObject Sender) {
//...
}
}
Description
This event is fired by TElHTTPSClient when the document receiving begins.
Discuss this help topic in SecureBlackbox Forum