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