Discuss this help topic in SecureBlackbox Forum

TElSimpleFTPSServer.AllowAnonymous

TElSimpleFTPSServer     


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


Specifies if anonymous authentication is allowed.

Declaration

[C#]
    bool AllowAnonymous;

[VB.NET]
    Property AllowAnonymous As Boolean

[Pascal]
    property AllowAnonymous : boolean;

[C++]
    bool get_AllowAnonymous();
    void set_AllowAnonymous(bool Value);

[PHP]
    bool get_AllowAnonymous()
    void set_AllowAnonymous(bool $Value)

[Java]
    boolean getAllowAnonymous();
    void setAllowAnonymous(boolean Value);

Description

    Use this property to specify if anonymous login is allowed, or not.
    The default value is False, i.e., do not allow anonymous authentication.

Discuss this help topic in SecureBlackbox Forum