Discuss this help topic in SecureBlackbox Forum

TElPGPStream.OnFinish

TElPGPStream     See also     


Filter: C#  VB.NET  Pascal  C++  PHP  Java  


This event is fired by the stream when it finishes data processing.

Declaration

[C#]
    event TNotifyEvent OnFinish;
    delegate void TNotifyEvent(Object Sender);

[VB.NET]
    Event OnFinish As TNotifyEvent
    Delegate Sub TNotifyEvent(ByVal Sender As Object)

[Pascal]
    property OnFinish : TNotifyEvent;
    TNotifyEvent = procedure (Sender: TObject) of object;

[C++]
    void get_OnFinish(TNotifyEvent &pMethodOutResult, void * &pDataOutResult);
    void set_OnFinish(TNotifyEvent pMethodValue, void * pDataValue);
    typedef void (SB_CALLBACK *TNotifyEvent)(void * _ObjectData, TObjectHandle Sender);

[PHP]
    TNotifyEvent|callable|NULL get_OnFinish()
    void set_OnFinish(TNotifyEvent|callable|NULL $Value)
    callable TNotifyEvent(TObject $Sender)

[Java]
    TNotifyEvent getOnFinish();
    void setOnFinish(TNotifyEvent Value);
    TNotifyEvent.Callback OnFinish = new TNotifyEvent.Callback() {
        public void TNotifyEventCallback(TObject Sender) {
            //...
        }
    }

Description

    This event is fired by TElPGPStream when data processing has been finished.

See also:     OnRead     OnWrite    

Discuss this help topic in SecureBlackbox Forum