Discuss this help topic in SecureBlackbox Forum

TElIMAPClient.UseSSL

TElIMAPClient     See also     


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


Specifies if the secure connection should be established

Declaration

[C#]
    bool UseSSL;

[VB.NET]
    Property UseSSL As Boolean

[Pascal]
    property UseSSL : boolean;

[C++]
    bool get_UseSSL();
    void set_UseSSL(bool Value);

[PHP]
    bool get_UseSSL()
    void set_UseSSL(bool $Value)

[Java]
    boolean getUseSSL();
    void setUseSSL(boolean Value);

Description

    If UseSSL is true, all data sent to, or received from the IMAP server, will be secured using SSL/TLS protocol. Otherwise, unencrypted connection will be used. The default value is false.

See also:     SSLMode    

Discuss this help topic in SecureBlackbox Forum