Discuss this help topic in SecureBlackbox Forum

TElSimpleFTPSClient.PassiveMode

TElSimpleFTPSClient     


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


Specifies if passive or active data transfer mode should be used for uploads and downloads.

Declaration

[C#]
    bool PassiveMode;

[VB.NET]
    Property PassiveMode As Boolean

[Pascal]
    property PassiveMode : boolean;

[C++]
    bool get_PassiveMode();
    void set_PassiveMode(bool Value);

[PHP]
    bool get_PassiveMode()
    void set_PassiveMode(bool $Value)

[Java]
    boolean getPassiveMode();
    void setPassiveMode(boolean Value);

Description

    If the property is set to True, the passive mode will be used. In passive mode, if the data connection is needed, the server opens listening socket and accepts data connection to it. If active mode is used, the listening socket is opened by the client side. Using passive mode is reasonable if a client is located behind a firewall or proxy software.
    Default value is False.

Discuss this help topic in SecureBlackbox Forum