Discuss this help topic in SecureBlackbox Forum

TElSSHBaseClient.CompressionAlgorithms

TElSSHBaseClient     See also     


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


This property specifies the algorithms which may be used for compressing data.

Declaration

[C#]
    bool CompressionAlgorithms[short Index];

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

[Pascal]
    property CompressionAlgorithms[Index : TSSHCompressionAlgorithm] : boolean;

[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.
  • Value - enables/disables the desired algorithm

Values

Description

Set this property before opening connection to specify the algorithms which may be used to compress data during the session. At this point, only two algorithms are defined by the standard: NONE (no compression) and ZLIB.

See also:     EncryptionAlgorithms     MacAlgorithms     KexAlgorithms     PublicKeyAlgorithms    

Discuss this help topic in SecureBlackbox Forum