Back to FlowSsh Documentation
TextHint Enumeration
[C/C++]
struct FlowSshC_TextHint { enum {
KnownText = 0,
GuessedText = 1,
KnownBinary = 2,
GuessedBinary = 3 }; };
[C#]
public enum TextHint
{
KnownText = 0,
GuessedText = 1,
KnownBinary = 2,
GuessedBinary = 3
}
Members
- KnownText: The server knows the file is a text file.
- GuessedText: The server believes the file is probably a text file.
- KnownBinary: The server knows the file has binary content.
- GuessedBinary: The server believes the file probably has binary content.
Remarks
This enumeration indicates what the server knows about the content of a file. It is used with the FileAttrs structure/class.