Discuss this help topic in SecureBlackbox Forum
This topic is under development…
Declaration
[C#/Java]
enum TSBSFTPTextHint { thKnownText = 0, thGuessedText = 1, thKnownBinary = 2, thGuessedBinary = 3 };
[VB.NET]
Enum TSBSFTPTextHint
thKnownText = 0
thGuessedText = 1
thKnownBinary = 2
thGuessedBinary = 3
End Enum
[Pascal]
TSBSFTPTextHint = (thKnownText, thGuessedText, thKnownBinary, thGuessedBinary);
[C++]
typedef uint8_t TSBSftpTextHintRaw;
typedef enum { thKnownText = 0, thGuessedText = 1, thKnownBinary = 2, thGuessedBinary = 3 } TSBSftpTextHint;
Description
Possible values:
Declared in
.NET:
- Namespace: SBSftpCommon
- Assembly: SecureBlackbox.SFTPCommon
VCL:Java:
- Package: SecureBlackbox.SFTPCommon.jar
C++:
Discuss this help topic in SecureBlackbox Forum