Discuss this help topic in SecureBlackbox Forum

TElSimpleFTPSClient.OnTextDataLineAsString

TElSimpleFTPSClient     See also     


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


This event is fired when the file is downloaded in text mode.

Declaration

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

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

[Pascal]
    not implemented;

[C++]
    not available

[PHP]
    not available

[Java]
    TSBFTPSTextDataAsStringEvent getOnTextDataLineAsString();
    void setOnTextDataLineAsString(TSBFTPSTextDataAsStringEvent Value);
    TSBFTPSTextDataAsStringEvent.Callback OnTextDataLineAsString = new TSBFTPSTextDataAsStringEvent.Callback() {
        public void TSBFTPSTextDataAsStringEventCallback(TObject arg0, String arg1) {
            //...
        }
    }

Parameters

  • TextLine - next portion of data from the server

Description

    This event is fired by TElSimpleFTPSClient consequently (thus returning the file data string by string), until the whole file is received. This event is similar to OnTextDataLine, except that TextLine is converted from byte array using the value of RemoteCodePage property.

See also:     RemoteCodePage     OnTextDataLine    

Discuss this help topic in SecureBlackbox Forum