Discuss this help topic in SecureBlackbox Forum

TElSSHClass.CompressionAlgorithmPriorities

TElSSHClass     See also     


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


Specifies priorities of different compression algorithms.

Declaration

[C#]
    int CompressionAlgorithmPriorities[short Index];

[VB.NET]
    Property CompressionAlgorithmPriorities(ByVal Index As Short) As Integer

[Pascal]
    property CompressionAlgorithmPriorities [Index : TSSHCompressionAlgorithm] : integer;
    TSSHCompressionAlgorithm = SSH_CA_FIRST..SSH_CA_LAST;

[C++]
    int32_t get_CompressionAlgorithmPriorities(uint8_t Index);
    void set_CompressionAlgorithmPriorities(uint8_t Index, int32_t Value);

[PHP]
    integer get_CompressionAlgorithmPriorities(integer $Index)
    void set_CompressionAlgorithmPriorities(integer $Index, integer $Value)

[Java]
    int getCompressionAlgorithmPriorities(short Index);
    void setCompressionAlgorithmPriorities(short Index, int Value);

Parameters

  • Index - index of the desired compression algorithm.

Values

Description

    Use this property to get or set priority values of the compression algorithms. The higher this value is, the more preferred is the algorithm.

See also:     CompressionAlgorithms    

Discuss this help topic in SecureBlackbox Forum