Discuss this help topic in SecureBlackbox Forum

TElFTPSServer.ClientAuthentication

TElFTPSServer     See also     


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


Specifies whether client authentication (certificate request) is enabled.

Declaration

[C#]
    bool ClientAuthentication;

[VB.NET]
    Property ClientAuthentication As Boolean

[Pascal]
    Property ClientAuthentication : boolean;

[C++]
    bool get_ClientAuthentication();
    void set_ClientAuthentication(bool Value);

[PHP]
    bool get_ClientAuthentication()
    void set_ClientAuthentication(bool $Value)

[Java]
    boolean getClientAuthentication();
    void setClientAuthentication(boolean Value);

Description

    This property defines whether the server should request the client's certificate. If the client doesn't have a certificate, the server's actions depend on the AuthenticationLevel property value. Client authentication is used very rarely. Use it only when you are sure that all clients have their certificates.

See also:     AuthenticationLevel    

Discuss this help topic in SecureBlackbox Forum