SecureBlackbox

200+ components and classes for all aspects of digital security of your data

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


TElSSLClient.CompressionAlgorithms

TElSSLClient     See also     


 

This property specifies the compression algorithms which can be used for compressing data

 

Declaration

[C#/Java]
    bool get_CompressionAlgorithms(TSBSSLCompressionAlgorithm Index);
    void set_CompressionAlgorithms(TSBSSLCompressionAlgorithm Index, bool Value);

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

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

[C++]
    not implemented;

   

Parameters

  • Index - index of the compression algorithm.
  • Value - specifies whether the compression algorithm should be enabled or disabled
   

Values


   

Description

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

   

See also:     CompressionAlgorithm    

 
Back to top