Discuss this help topic in SecureBlackbox Forum

TElSimpleSFTPClient.ASCIIMode

TElSimpleSFTPClient     See also     


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


Specifies text or binary transfer mode.

Declaration

[C#]
    bool ASCIIMode;

[VB.NET]
    Property ASCIIMode As Boolean

[Pascal]
    property ASCIIMode : Boolean;

[C++]
    bool get_ASCIIMode();
    void set_ASCIIMode(bool Value);

[PHP]
    bool get_ASCIIMode()
    void set_ASCIIMode(bool $Value)

[Java]
    boolean getASCIIMode();
    void setASCIIMode(boolean Value);

Description

    Use this property to enabled ASCII transfer mode (Default is binary). In ASCII mode the files are transferred as text with implicit line ending conversion. This property is used by DownloadFile and UploadFile methods.

See also:     DownloadFile     UploadFile    

Discuss this help topic in SecureBlackbox Forum