Discuss this help topic in SecureBlackbox Forum

TElSimpleFTPSClient.OnControlSend

TElSimpleFTPSClient     See also     


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


This event is fired when TElSimpleFTPSClient sends command to the server.

Declaration

[C#]
    event TSBFTPSTextDataEvent OnControlSend;
    delegate void TSBFTPSTextDataEvent(Object Sender, byte[] TextLine);

[VB.NET]
    Event OnControlSend As TSBFTPSTextDataEvent
    Delegate Sub TSBFTPSTextDataEvent(ByVal Sender As Object, ByVal TextLine As Byte())

[Pascal]
    property OnControlSend : TSBFTPSTextDataEvent;
    TSBFTPSTextDataEvent = procedure(Sender : TObject; const TextLine : ByteArray) of object;

[C++]
    void get_OnControlSend(TSBFTPSTextDataEvent &pMethodOutResult, void * &pDataOutResult);
    void set_OnControlSend(TSBFTPSTextDataEvent pMethodValue, void * pDataValue);
    typedef void (SB_CALLBACK *TSBFTPSTextDataEvent)(void * _ObjectData, TObjectHandle Sender, const uint8_t pTextLine[], int32_t szTextLine);

[PHP]
    TSBFTPSTextDataEvent|callable|NULL get_OnControlSend()
    void set_OnControlSend(TSBFTPSTextDataEvent|callable|NULL $Value)
    callable TSBFTPSTextDataEvent(TObject $Sender, string $TextLine)

[Java]
    TSBFTPSTextDataEvent getOnControlSend();
    void setOnControlSend(TSBFTPSTextDataEvent Value);
    TSBFTPSTextDataEvent.Callback OnControlSend = new TSBFTPSTextDataEvent.Callback() {
        public void TSBFTPSTextDataEventCallback(TObject Sender, byte[] TextLine) {
            //...
        }
    }

Parameters

  • TextLine (Text) - text line that contains command
  • pTextLine -
  • szTextLine - the length of pcTextLine.

Description

    This event is fired when TElSimpleFTPSClient sends command to the server.

See also:     OnControlReceive     OnControlSendAsString    

Discuss this help topic in SecureBlackbox Forum