Discuss this help topic in SecureBlackbox Forum

TElHTTPSClient.SSLEnabled

TElHTTPSClient     


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


Specifies if the request should be sent over encrypted SSL channel.

Declaration

[C#]
    bool SSLEnabled;

[VB.NET]
    Property SSLEnabled As Boolean

[Pascal]
    property SSLEnabled : Boolean;

[C++]
    bool get_SSLEnabled();
    void set_SSLEnabled(bool Value);

[PHP]
    bool get_SSLEnabled()
    void set_SSLEnabled(bool $Value)

[Java]
    boolean getSSLEnabled();
    void setSSLEnabled(boolean Value);

Description

    Use this property to specify if SSL should be used during HTTP negotiation.
    Default value is True.
    Note that the value of this property is used when there's no protocol part specified in the URL. If the protocol is specified, then this property is ignored.

Discuss this help topic in SecureBlackbox Forum