Discuss this help topic in SecureBlackbox Forum

TElSimpleFTPSClient.OnControlReceiveAsString

TElSimpleFTPSClient     See also     


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


This event is fired when TElSimpleFTPSClient receives command from the server.

Declaration

[C#]
    event TSBFTPSTextDataAsStringEvent OnControlReceiveAsString;
    delegate void TSBFTPSTextDataAsStringEvent(Object Sender, string TextLine);

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

[Pascal]
    not implemented;

[C++]
    not available

[PHP]
    not available

[Java]
    TSBFTPSTextDataAsStringEvent getOnControlReceiveAsString();
    void setOnControlReceiveAsString(TSBFTPSTextDataAsStringEvent Value);
    TSBFTPSTextDataAsStringEvent.Callback OnControlReceiveAsString = new TSBFTPSTextDataAsStringEvent.Callback() {
        public void TSBFTPSTextDataAsStringEventCallback(TObject arg0, String arg1) {
            //...
        }
    }

Parameters

  • TextLine - text line that contains command

Description

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

See also:     OnControlReceive     RemoteCodePage    

Discuss this help topic in SecureBlackbox Forum