Discuss this help topic in SecureBlackbox Forum

TElHTTPSServer.SSLCompressionAlgorithms

TElHTTPSServer     See also     


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


This property specifies compression algorithms which may be used during SSL flow.

Declaration

[C#]
    bool SSLCompressionAlgorithms[short Index];

[VB.NET]
    Property SSLCompressionAlgorithms(ByVal Index As Short) As Boolean

[Pascal]
    property SSLCompressionAlgorithms[Index : TSBSSLCompressionAlgorithm] : boolean;

[C++]
    bool get_SSLCompressionAlgorithms(uint8_t Index);
    void set_SSLCompressionAlgorithms(uint8_t Index, bool Value);

[PHP]
    bool get_SSLCompressionAlgorithms(integer $Index)
    void set_SSLCompressionAlgorithms(integer $Index, bool $Value)

[Java]
    not available

Parameters

  • Index - index of the compression algorithm.

TSBSSLCompressionAlgorithm values:

Description

Set this property before calling the Open method to specify which compression algorithms can be used during the secure session. For now only two algorithms are defined and used: NONE (no compression) and ZLIB.

See also:     SSLCompressionAlgorithm    

Discuss this help topic in SecureBlackbox Forum