Discuss this help topic in SecureBlackbox Forum

TElSimpleFTPSClient.OnControlSendAsString

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 TSBFTPSTextDataAsStringEvent OnControlSendAsString;
    delegate void TSBFTPSTextDataAsStringEvent(Object Sender, string TextLine);

[VB.NET]
    Event OnControlSendAsString As TSBFTPSTextDataAsStringEvent
    Delegate Sub TSBFTPSTextDataAsStringEvent(ByVal Sender As Object, ByVal TextLine As String)

[Pascal]
    property OnControlSendAsString : TSBFTPSTextDataAsStringEvent;
    TSBFTPSTextDataAsStringEvent = procedure(Sender : TObject; const TextLine : string) of object;

[C++]
    not available

[PHP]
    not available

[Java]
    TSBFTPSTextDataAsStringEvent getOnControlSendAsString();
    void setOnControlSendAsString(TSBFTPSTextDataAsStringEvent Value);
    TSBFTPSTextDataAsStringEvent.Callback OnControlSendAsString = new TSBFTPSTextDataAsStringEvent.Callback() {
        public void TSBFTPSTextDataAsStringEventCallback(TObject arg0, String arg1) {
            //...
        }
    }

Parameters

  • TextLine - text line that contains command

Description

    This event is fired when TElSimpleFTPSClient sends command to the server. This event is similar to OnControlSend, except that TextLine is converted from byte array using the value of RemoteCodePage property.

See also:     RemoteCodePage     OnControlSend    

Discuss this help topic in SecureBlackbox Forum