Discuss this help topic in SecureBlackbox Forum

TElSimpleSSHClient.ForceCompression

TElSimpleSSHClient     See also     


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


This property specifies whether SSH client should explicitly require compression

Declaration

[C#]
    bool ForceCompression;

[VB.NET]
    Property ForceCompression As Boolean

[Pascal]
    property ForceCompression : boolean;

[C++]
    bool get_ForceCompression();
    void set_ForceCompression(bool Value);

[PHP]
    bool get_ForceCompression()
    void set_ForceCompression(bool $Value)

[Java]
    boolean getForceCompression();
    void setForceCompression(boolean Value);

Description

    Set this property before calling the Open method. If it is set to True, then SSH client will explicitly request compression. If it is set to False, then SSH client will support compression, but compression will be used only in case if server doesn't support algorithms without compression.

See also:     CompressionAlgorithms    

Discuss this help topic in SecureBlackbox Forum