Discuss this help topic in SecureBlackbox Forum

TElSftpClient.OnExtendedReply

TElSftpClient     See also     


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


This event is fired when an unknown extended reply is received from the server.

Declaration

[C#]
    event TSBSftpDataEvent OnExtendedReply;
    delegate void TSBSftpDataEvent(Object Sender, byte[] Buffer);

[VB.NET]
    Event OnExtendedReply As TSBSftpDataEvent
    Delegate Sub TSBSftpDataEvent(ByVal Sender As Object, ByVal Buffer As Byte())

[Pascal]
    property OnExtendedReply : TSBSftpDataEvent;
    TSBSftpDataEvent = procedure (Sender: TObject; Buffer : pointer; Size : integer) of object;

[C++]
    void get_OnExtendedReply(TSBSftpDataEvent &pMethodOutResult, void * &pDataOutResult);
    void set_OnExtendedReply(TSBSftpDataEvent pMethodValue, void * pDataValue);
    typedef void (SB_CALLBACK *TSBSftpDataEvent)(void * _ObjectData, TObjectHandle Sender, void * Buffer, int32_t Size);

[PHP]
    TSBSftpDataEvent|callable|NULL get_OnExtendedReply()
    void set_OnExtendedReply(TSBSftpDataEvent|callable|NULL $Value)
    callable TSBSftpDataEvent(TObject $Sender, TSBPointer|NULL $Buffer, integer $Size)

[Java]
    TSBSftpDataEvent getOnExtendedReply();
    void setOnExtendedReply(TSBSftpDataEvent Value);
    TSBSftpDataEvent.Callback OnExtendedReply = new TSBSftpDataEvent.Callback() {
        public void TSBSftpDataEventCallback(TObject arg0, byte[] arg1) {
            //...
        }
    }

Parameters

  • Buffer - buffer containing the server's reply.
  • Size - size of the Buffer in bytes.

Description

    This event is fired by TElSftpClient when an unknown extended reply is received from the server.

See also:     OnFileHash    

Discuss this help topic in SecureBlackbox Forum