Discuss this help topic in SecureBlackbox Forum

TElSSHClass.CompressionAlgorithms

TElSSHClass     See also     


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


Specifies algorithms which can be used for data compression.

Declaration

[C#]
    bool CompressionAlgorithms[short Index];

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

[Pascal]
    property CompressionAlgorithms [Index : TSSHCompressionAlgorithm] : boolean;
    TSSHCompressionAlgorithm = SSH_CA_FIRST..SSH_CA_LAST;

[C++]
    bool get_CompressionAlgorithms(uint8_t Index);
    void set_CompressionAlgorithms(uint8_t Index, bool Value);

[PHP]
    bool get_CompressionAlgorithms(integer $Index)
    void set_CompressionAlgorithms(integer $Index, bool $Value)

[Java]
    not available

Parameters

  • Index - index of the compression algorithm.

Values

Description

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

See also:     CompressionAlgorithmPriorities    

Discuss this help topic in SecureBlackbox Forum