Discuss this help topic in SecureBlackbox Forum

TElSSHClass.UseUTF8

TElSSHClass     See also     


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


Specifies whether UTF-8 conversion should be used for data sent by the client.

Declaration

[C#]
    bool UseUTF8;

[VB.NET]
    Property UseUTF8 As Boolean

[Pascal]
    property UseUTF8 : boolean;

[C++]
    bool get_UseUTF8();
    void set_UseUTF8(bool Value);

[PHP]
    bool get_UseUTF8()
    void set_UseUTF8(bool $Value)

[Java]
    boolean getUseUTF8();
    void setUseUTF8(boolean Value);

Description

    Use this property to specify, whether all SSH commands and shell data exchanged between SSH client and server should be converted to UTF-8. If this property is set to True, SecureBlackbox treats all text data as UTF-8 encoded. If the property is set to False, the charset is controlled by NoCharacterEncoding and RemoteCharset properties.

See also:     NoCharacterEncoding     RemoteCharset     TElSSHClient.Open     TElSSHServer.Open     OnOpenConnection    

Discuss this help topic in SecureBlackbox Forum