Discuss this help topic in SecureBlackbox Forum

TElSimpleFTPSServerSessionThread.AllowAnonymous

TElSimpleFTPSServerSessionThread     See also     


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.
    Use AnonymousLogin property to check if current user has connected as anonymous.

See also:     AnonymousLogin    

Discuss this help topic in SecureBlackbox Forum